Viewing 2 replies - 1 through 2 (of 2 total)
  • I am having the same problem and came to this forum to post a thread asking for help…. anyone have a solution to this? It seems that the “Clean up the head” is no longer there. My site does not use any RSS feeds and is content only (not a blog) so I’d like to turn this feature off.

    Thanks

    like esmy said here

    // Remove auto generated feed links
    function my_remove_feeds() {
    	remove_action( 'wp_head', 'feed_links_extra', 3 );
    	remove_action( 'wp_head', 'feed_links', 2 );
    }
    add_action( 'after_setup_theme', 'my_remove_feeds' );

    Work fine in WordPress 4.5.3

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable RSS Feed Links’ is closed to new replies.