我试图通过
删除remove_action( 'wp_head', 'feed_links', 10);
在模板的functions.php中,但它不起作用。我还是
<link rel="alternate" type="application/rss+xml" title="... Comments Feed" href="..." />
我使用的是Wordpress 3.4.2。
答案 0 :(得分:3)
尝试
function remove_header_info() {
remove_action('wp_head', 'feed_links', 2); //removes feeds
remove_action('wp_head', 'feed_links_extra', 3); //removes comment feed links
}
add_action('init', 'remove_header_info');