X

Disable comments RSS feed in WordPress wp_head

Add below code to your functions.php and theme will remove comments RSS feed from WordPress header.

 
<?php
 
	remove_action('wp_head', 'feed_links', 2);
 
?>