Exclude one category from showing on homepage

Hello there,
I’m trying to exclude 2 categories from the home page.
I have already made the theme-child.
I put on the function.php this code:
// Escludere categorie da home
function exclude_category($query) {
if ( $query->is_home() ) {
$query->set(‘category__not_in’, ‘3’, ‘5’);
}
return $query;
}
add_filter(‘pre_get_posts’, ‘exclude_category’);

But it doesn’t work.
Thank you for your kind support

Hello there,

I hope you are doing well today.

What section are you trying to remove the categories from on the homepage?

Best Regards,
Support

The uncategorized and press release category

Hello there,

Do you want to prvent these categories from appearing in the “Latest News” section?

You can try using this plugin to exclude these categories:

Best Regards,
Support