Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

While I was experimenting with my developing plugin and after hooking the_content_feed to modify the default WordPress feed output, which can be accessed at http://siteurl/?feed=rss2, even if I comment out the line, add_filter('the_content_feed', 'myfunc') the feed output is still modified. I mean I've already succeeded to modify the output; I want to return back to the normal.

I suspected it's due to the cache and tried to clear it. As I search the web, I found this article and tried the following code,

global $wpbd;
$wpdb->query( "DELETE FROM `wp_options` WHERE `option_name` LIKE ('_transient%_feed_%')" );

However, the feed output is still modified. I have no ideas at this point. Could somebody help?

share|improve this question

closed as too localized by Rarst Sep 1 '12 at 18:27

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Restarting the browser seems to have fixed it.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.