Ta bort feed från WP-installation

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);

 

Författare: Erik

Erik har jobbat med webb professionellt sedan 2008. Från 2005 till 2008 studerades webb på ING/JTH och dessförinnan skapades webb på all fritid. Första sajten byggdes någon gång mellan 1996-1998.