Forums
Forums / Fixing WordPress / Remove comments rss feed
(@rightintwo)
16 years, 1 month ago
Hi,
I’m using the default kubrick wordpress theme, have comments turned off but still have an comments feed being generated.
Is it possible to remove/stop this feed, and at the same time still have wordpress generate the general and category/post feeds?
Many thanks in advance.
(@esmi)
You could try adding:
remove_action( 'wp_head', 'feed_links_extra', 3 ); // removes comment feed link
to the top of the theme’s functions.php file – just after the opening <?php tag.
<?php
The topic ‘Remove comments rss feed’ is closed to new replies.
(@rightintwo)
16 years, 1 month ago
Hi,
I’m using the default kubrick wordpress theme, have comments turned off but still have an comments feed being generated.
Is it possible to remove/stop this feed, and at the same time still have wordpress generate the general and category/post feeds?
Many thanks in advance.