禁用评论rss

时间:2011-02-24 15:26:19

标签: wordpress wordpress-theming

我用它来自动显示header.php中的rss

automatic_feed_links();
标题中的

出现feed = rss2和feed = comments-rss2

现在我只想禁用评论-rss2 ,因为我不在主题中使用评论。

如果我使用remove_action( 'wp_head', 'feed_links', 2 );两者都从头部删除。

我只想删除评论-rss2 -
无法找到任何参考如何。

有人知道吗?

1 个答案:

答案 0 :(得分:-1)

wp-includes / general-template.php中的

feed_links 函数包含两个Feed的 echo 命令,无法使用参数禁用。注释掉 // 这一行:(wp-includes / general-template.php#1614 for wp3.1)

echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr(sprintf( $args['comstitle'], get_bloginfo('name'), $args['separator'] )) . '" href="' . get_feed_link( 'comments_' . get_default_feed() ) . "\" />\n";