add_action( 'pre_get_posts', function ( $q ) {
if ( $q->is_home() && $q->is_main_query() ) {
$q->set( 'category__in', array( 2, 6 ) );
}
});
add_action( 'pre_get_posts', function ( $q ) {
if ( $q->is_home() && $q->is_main_query() ) {
$q->set( 'category__in', array( 2, 6 ) );
}
});