我从来没有用过“黑色小品”这个主题。但是<head>
节通常来自functions.php
. 有一句话是这样说的:
add_theme_support( \'automatic-feed-links\' );
否则,它可能会硬编码到
header.php
如2:
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo(\'name\'); ?> RSS Feed" href="<?php bloginfo(\'rss2_url\'); ?>" />
1。法典:Automatic Feed Links
2。WordPress 3.0 Theme Tip Feed Links — ottopress.com编辑
感谢Chip Bennett提供的实际答案,请在回答中充分尊重他:
只需在您的
functions.php
要删除馈送链接:
add_action( \'after_theme_support\', \'wpse_122841_remove_feed\' );
function wpse_122841_remove_feed() {
remove_theme_support( \'automatic-feed-links\' );
}
感谢Chip Bennett的加入。感谢birgire和Vincent建议修复。