WordPress RSS-Feed deaktivierung


/ Published in: PHP
Save to your folder(s)

In die functions.php des Themes einfügen.


Copy this code and paste it in your HTML
  1. /**
  2.  * disable feed
  3.  */
  4. function fb_disable_feed() {
  5. wp_die( __('Kein Feed erreichbar, besuchen Sie doch bitte die <a href="'. get_bloginfo('url') .'">Startseite</a>!') );
  6. }
  7.  
  8. add_action('do_feed', 'fb_disable_feed', 1);
  9. add_action('do_feed_rdf', 'fb_disable_feed', 1);
  10. add_action('do_feed_rss', 'fb_disable_feed', 1);
  11. add_action('do_feed_rss2', 'fb_disable_feed', 1);
  12. add_action('do_feed_atom', 'fb_disable_feed', 1);

URL: http://bueltge.de/wordpress-feeds-deaktivieren/794/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.