Skip to content

Instantly share code, notes, and snippets.

@ramseyp
Created November 14, 2012 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ramseyp/4074977 to your computer and use it in GitHub Desktop.
Save ramseyp/4074977 to your computer and use it in GitHub Desktop.
Disable Feeds for WordPress site
<?php
/**
*
* Disable feeds
*/
function fb_disable_feed() {
wp_die( __('No feed available,please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') );
}
add_action('do_feed', 'fb_disable_feed', 1);
add_action('do_feed_rdf', 'fb_disable_feed', 1);
add_action('do_feed_rss', 'fb_disable_feed', 1);
add_action('do_feed_rss2', 'fb_disable_feed', 1);
add_action('do_feed_atom', 'fb_disable_feed', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment