Hi, I have tried several methods, including adjusting the functions.php file and adding an if is_home, cat (8) approach to exclude my category from appearing in the front page, but no luck.
I don't want to use a plug-in. I'd like to just code in to my index.php or my functions.php not to include category 8 posts on the front page.
Here is the functions code:
function exclude_category($query) {
if ( $query->is_home) {
$query->set('cat', '-8');
}
return $query;
}
Please help me out.
Thanks
DD