[wp-testers] feed_links_extra

rovo89 lists at robv.de
Mon Apr 19 18:56:02 UTC 2010


> remove_filter('wp_head', 'feed_links_extra');

In default-filters.php, you can find the following line:

add_action( 'wp_head', 'feed_links_extra', 3 );

To remove it, I think it's necessary to pass the same priority:

remove_action( 'wp_head', 'feed_links_extra', 3 );


More information about the wp-testers mailing list