GochiSiyan

another disable rss

Sep 17th, 2021 (edited)
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function wpb_disable_feed() {
  2. if ( is_feed() && ! is_single() ) {
  3. glog('frontpage');
  4. wp_die( __('No feed available,please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') );
  5. }
  6. }
  7.  
  8. add_action('do_feed', 'wpb_disable_feed', 1);
  9. add_action('do_feed_rdf', 'wpb_disable_feed', 1);
  10. add_action('do_feed_rss', 'wpb_disable_feed', 1);
  11. add_action('do_feed_rss2', 'wpb_disable_feed', 1);
  12. add_action('do_feed_atom', 'wpb_disable_feed', 1);
  13. add_action('do_feed_rss2_comments', 'wpb_disable_feed', 1);
  14. add_action('do_feed_atom_comments', 'wpb_disable_feed', 1);
Add Comment
Please, Sign In to add comment