Top Google Search Results
- wp_feed_options Wordpress hook details -- Adam Brown, BYU ...
Detailed information about every action hook and filter used in WordPress. Makes Plugin API easier to use. Lists appearance, file location, and deprecation data ... - How to make your WordPress a RSS reader | Jaewon's Home
Oct 30, 2010... twentyten_feed_options( $feeds ) { $feeds->set_item_limit(1); } add_action( ' wp_feed_options', 'twentyten_feed_options' ); // Get the contents ... - Feed Cache in WordPress - WP Engineer
Nov 18, 2009... do_not_cache_feeds(&$feed) { $feed->enable_cache(false); } if ( defined(' WP_DEBUG') && WP_DEBUG ) add_action( 'wp_feed_options', ... - rss - How to flush feed? Or set timeout on feed so that it isn't cached ...
Feb 7, 2011 ... function do_not_cache_feeds(&$feed) { $feed->enable_cache(false); } add_action( 'wp_feed_options', 'do_not_cache_feeds' ); ...