1

我试图通过删除

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

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

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

我正在使用 Wordpress 3.4.2。

4

1 回答 1

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');
于 2012-12-17T13:37:51.357 回答