无法从标题中删除Feed链接

时间:2012-12-17 12:25:21

标签: wordpress templates

我试图通过

删除
remove_action( 'wp_head', 'feed_links', 10);

在模板的functions.php中,但它不起作用。我还是

<link rel="alternate" type="application/rss+xml" title="... Comments Feed" href="..." />

我使用的是Wordpress 3.4.2。

1 个答案:

答案 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');