add_action( 'pre_get_posts', 'my_show_campaigns' );
function my_show_campaigns( $query ) {
// is_home - проверяет, чтобы это была главная страница
if( is_home() && $query->is_main_query() )
$query->set( 'post_type', 'leyka_campaign' );
endif;
}