在Wordpress 3.3.2上,上述解决方案都不适用于我
例如,在类别页面中,我有:
application/rss+xml" title="title feed" href="http://www.example.com/feed/" />
application/rss+xml" title="Title Comments Feed" href="http://www.example.com/comments/feed/" />
application/rss+xml" title="Title Category Feed" href="http://www.example.com/cat/feed/" />
要删除
first 以及
second line (main feed和comments feed),I\'v为/wp-content/themes/my-themes-name/functions添加了以下代码。php
remove_action(\'wp_head\', \'feed_links\', 2);
add_action(\'wp_head\', \'my_feed_links\');
在主页上,不会显示这些内容。