由于回答了这个问题,我找到了解决方案:Specify number of posts in my 'tax_query'
我想展示“tipo\\u递解出境”分类中“futbol”的帖子:
<?php
$args = array(
\'posts_per_page\' => 2,
\'tax_query\' => array(
array(
\'taxonomy\' => \'tipo_deporte\',
\'field\' => \'slug\',
\'terms\' => array(\'futbol\'),
)
)
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while( $query->have_posts() ) {
$query->the_post();
//The Post
}
}
?>