Remove WordPress Comment Feed

Posted in: Newspaper
Post count: 66

How can I remove the comments feed only? I want to keep posts rss feed.

Post count: 22421

Hello doran,

Our theme does not manage the rss feed, it is managed by wordpress, but it can be modified in the functions.php.
Unfortunately we cannot offer custom work, but we can point you in the right direction as you can find a solution for your problems here:
http://wordpress.stackexchange.com/questions/126174/disable-comments-feed-but-not-the-others

or another solution like so: http://timneill.net/2013/05/remove-extra-rss-feeds-in-wordpress/
Try them out and see how it goes.

Thank you for your message.

Post count: 9544

Hi –
you might be able to hide/disable them partially using the custom code from my sticky post for site optimization, specifically the first bits related to feeds, which would be added to the bottom of the theme functions.php file in a text editor (NOT WORD PROCESSOR)

 remove_action( 'wp_head', 'wp_generator' ) ;
 remove_action( 'wp_head', 'wlwmanifest_link' ) ;
 remove_action( 'wp_head', 'rsd_link' ) ;
 remove_action( 'wp_head', 'feed_links', 2 );
 remove_action( 'wp_head', 'feed_links_extra', 3 );

REF:
https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/

also for the more technical crap related to this topic
https://core.trac.wordpress.org/ticket/23692

  • This reply was modified 10 years by simchris.
Post count: 66

Thank you Chris,

I used your custom code but it removed all feeds.

Then, I added this code manually in header.php


<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />

It looks nice.

  • This reply was modified 10 years by doran.
Post count: 9544

Ah, just so folks know what my little code is doing
the first bit is removing atom feed, second bit ‘extra’ is removing comments feed.

Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.