How to remove RSS feed from head tag in your template.
Source code viewer
# Insert this into your themes functions.php file # Removes RSS tags from extra content remove_action( 'wp_head', 'feed_links_extra', 3 ); # Removes RSS tags from posts and comments remove_action( 'wp_head', 'feed_links', 2 );Programming Language: PHP