如何阻止wp_head()不打印XML feed URL?

时间:2011-07-10 07:07:11

标签: wordpress

我不希望我的wp博客在html中打印RSS / Atom Feed网址。一种方法是在wp-includes/default-filters.php

中评论以下几行
add_action( 'wp_head',             'feed_links',                    2     );
add_action( 'wp_head',             'feed_links_extra',              3     );

但问题是,如果我使用仪表板升级WP,我可能会失去这些变化。有没有办法阻止WP打印这些Feed网址?

1 个答案:

答案 0 :(得分: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