Please update your Flash Player

Please update your Flash Player

Exlude Categories From RSS AND MAIN PAGE

Posted In WordPress Notes On Tuesday May 5 , 2009

ADD THE FOLLOWING CODE TO YOUR FUNCTIONS.PHP

/* ———————————————————- */
/* **Start Hiding Exclude Catagory** */

function exclude_category($query) {
if ( $query->is_feed || $query->is_home ) {
$query->set(’cat’, ‘-37,-38′);
}
return $query;
}

add_filter(’pre_get_posts’, ‘exclude_category’);

/* **END Hiding Exclude Catagory** */
/* ———————————————————- */

No Comments »

No comments yet.

RSS feed for comments on this post.

Post Your Thoughts and Ideas