Hi Forum,
Kindly someone help me exclude category for particular pages by coding in function.php that is outside the loop.
I need something like this,
function exclude_category($query) {
if ( is_page(PAGE-ID) ) {
$query->set('cat', '-3');
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');
-Riaz