
Need to disable the WordPress RSS feed? It’s easy. Just paste this into your wp-content/themes/*theme-name*/functions.php file. If you don’t have a function.php file, create one.
<?
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);
?>
Leave a comment
This is a dofollow website. If you leave a comment, then we'll give you a backlink.Please be aware that this website is strictly moderated. If you post spam, you'll get a slap.