/ Published in: PHP
In die functions.php des Themes einfügen.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * disable feed */ function fb_disable_feed() { wp_die( __('Kein Feed erreichbar, besuchen Sie doch bitte die <a href="'. get_bloginfo('url') .'">Startseite</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);
URL: http://bueltge.de/wordpress-feeds-deaktivieren/794/