2012-12-17 25 views
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。

回答

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'); 
+0

它的工作,谢谢! – makbol