Skip to content

Instantly share code, notes, and snippets.

@RiodeJaneiroo
Created April 26, 2019 05:45
Show Gist options
  • Save RiodeJaneiroo/708ef68f75e08f1d587277484ef5433f to your computer and use it in GitHub Desktop.
Save RiodeJaneiroo/708ef68f75e08f1d587277484ef5433f to your computer and use it in GitHub Desktop.
[ wordpress remove feed] #wordpress #seo
<?php
add_action('do_feed', 'itsme_disable_feed', 1);
add_action('do_feed_rdf', 'itsme_disable_feed', 1);
add_action('do_feed_rss', 'itsme_disable_feed', 1);
add_action('do_feed_rss2', 'itsme_disable_feed', 1);
add_action('do_feed_atom', 'itsme_disable_feed', 1);
add_action('do_feed_rss2_comments', 'itsme_disable_feed', 1);
add_action('do_feed_atom_comments', 'itsme_disable_feed', 1);
remove_action( 'wp_head', 'feed_links_extra', 3 );
remove_action( 'wp_head', 'feed_links', 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment