Hi there,
I know this question has been answered a couple of times but I have tried every solution I saw and none works for me.
I am trying to exclude specific post categories ( Gallery and Projects ) from displaying among the blog posts page.
Here’s the code I’m using in the Pro child theme:
function x_exclude_cat_from_blog($query) {
if ($query->is_home() && $query->is_main_query()) {
$query->set(‘cat’, ’ -25, -26 ');
}
}
add_action(‘pre_get_posts’, ‘x_exclude_cat_from_blog’);
Blog page: https://pccned.davosban.com/blog/
Kindly assist, thanks.
