Används med fördel med tidigare nämnda ”remove bös from wp_head”.
// Disable the /feed-urls
function disable_feed() {
wp_die( __('Inget tillgängligt feed, gå till <a href="'. get_bloginfo('url') .'">drommenomboras.se</a>!', 'dob') );
}
add_action('do_feed', 'disable_feed', 1);
add_action('do_feed_rdf', 'disable_feed', 1);
add_action('do_feed_rss', 'disable_feed', 1);
add_action('do_feed_rss2', 'disable_feed', 1);
add_action('do_feed_atom', 'disable_feed', 1);