Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function wpb_disable_feed() {
- if ( is_feed() && ! is_single() ) {
- glog('frontpage');
- wp_die( __('No feed available,please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') );
- }
- }
- add_action('do_feed', 'wpb_disable_feed', 1);
- add_action('do_feed_rdf', 'wpb_disable_feed', 1);
- add_action('do_feed_rss', 'wpb_disable_feed', 1);
- add_action('do_feed_rss2', 'wpb_disable_feed', 1);
- add_action('do_feed_atom', 'wpb_disable_feed', 1);
- add_action('do_feed_rss2_comments', 'wpb_disable_feed', 1);
- add_action('do_feed_atom_comments', 'wpb_disable_feed', 1);
Add Comment
Please, Sign In to add comment