2011-07-10 34 views
0

我不希望我的wp博客在html中打印RSS/Atom Feed url。做到這一點的方法之一是註釋以下行wp-includes/default-filters.php如何阻止wp_head()不打印XML提要URL?

add_action('wp_head',    'feed_links',     2 ); 
add_action('wp_head',    'feed_links_extra',    3 ); 

但這裏的問題是,如果我使用的儀表板upldate WP我可能會失去這些變化。有沒有辦法停止WP打印這些Feed URL?

回答

1

無論如何這不是一個解決方案,永遠不要更改核心文件。

使用此代碼,您在wp-content/themes/{your theme}/functions.php

remove_action('wp_head', 'feed_links_extra', 3); // Removes the links to the extra feeds such as category feeds 

remove_action('wp_head', 'feed_links', 2); // Removes links to the general feeds: Post and Comment Feed 
+0

由於一噸伊萬! – Kumar