@replace {{cpt-slug}}
add_action( 'pre_get_posts', function ( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( 'post_type', array( 'post', '{{cpt-slug}}' ) );
return $query;
} );
@replace {{cpt-slug}}
add_action( 'pre_get_posts', function ( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( 'post_type', array( 'post', '{{cpt-slug}}' ) );
return $query;
} );