有两种方法可以做到这一点:
截取上的主查询pre_get_posts
:
add_action( \'pre_get_posts\', function( $query )
{
// only handle the main query
if ( ! $query->is_main_query() )
return;
$query->set( \'meta_key\', \'cp_annonceur\' );
$query->set( \'meta_value\', \'professionnel\' );
} );
添加其他查询
$second_loop = get_posts( array(
\'meta_key\' => \'cp_annonceur\',
\'meta_value\' => \'professionnel\',
) );
可以在中找到更全面的示例
this answer.