title

WP SQL – Delete feed cache

 

WP SQL – Delete feed cache

18 Juil 2013, Posted by antoine in

WordPress stores the feed cache in the wp_options table. If you want to flush the feed cache, you can do so by using the following query:

DELETE FROM `wp_options` WHERE `option_name` LIKE ('_transient%_feed_%')

→ Source: http://wpengineer.com/2114/delete-all-feed-cache…