View Single Post
Old 02-11-2011, 02:45 AM  
just a punk
So fuckin' bored
 
just a punk's Avatar
 
Industry Role:
Join Date: Jun 2003
Posts: 32,384

Put this code into the function.php file of your theme:

Code:
function protect_my_feed($content) {
        $content = "Fuck off!";
}

if (is_feed ()) {
	add_filter ( 'the_content', 'protect_my_feed' );
        add_filter ( 'the_excerpt', 'protect_my_feed' );
        add_filter ( 'the_excerpt_rss', 'protect_my_feed' );
        add_filter ( 'the_content_rss', 'protect_my_feed' );
}
__________________
Obey the Cowgod
just a punk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote