如何从WP 3.1.1中删除评论提要?

时间:2011-06-22 作者:pereyra

我在互联网上尝试了许多可用的解决方案,但在WP 3.1.1中似乎都不起作用。

谢谢

2 个回复
最合适的回答,由SO网友:onetrickpony 整理而成
remove_action(\'wp_head\', \'feed_links\', 2); 
add_action(\'wp_head\', \'my_feed_links\');

function my_feed_links() {
  if ( !current_theme_supports(\'automatic-feed-links\') ) return;

  // post feed 
  ?>
  <link rel="alternate" type="<?php echo feed_content_type(); ?>" 
        title="<?php printf(__(\'%1$s %2$s Feed\'), get_bloginfo(\'name\'), \' &raquo; \'); ?>"
        href="<?php echo get_feed_link(); ?> " />
  <?php 
}
SO网友:Scott Grodberg

自WP版本3.0以来,标头中的提要链接已明确启用

/**
 * Add default posts and comments RSS feed links to head
 */
// add_theme_support( \'automatic-feed-links\' );
正在注释此\'add_theme_support\' 线路(在您的functions.php 文件)将删除/feed//comments/feed/ 标题中的链接。

此处的背景信息:Automatic_Feed_Links

结束