3.1 rewrites
-
Hello,
After upgrading to 3.1 a plugin that I use for custom rss feeds partially works.Plugin uses url: https://www.site.com/?feed=custom to display custom output. This still works OK.
If the url begins with category: https://www.site.com/mycategory/?feed=custom it is now translated to https://www.site.com/mycategory/feed/custom and redirects to 404.
Plugin uses this method to see if it should do custom output:
$method = get_query_var(‘feed’);
if (empty($method)) {
return false;
} else if ($method == “custom”) {
do_stuff();
exit;
}How can I make this work again in 3.1 or can I downgrade to get previous behavior?
Thanks!
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘3.1 rewrites’ is closed to new replies.