GET_POST,仅当这两个类别都存在时

时间:2013-03-06 作者:Sal

get\\u posts(\'numberposts=5&category=93+85\')get\\u posts(\'numberposts=5&category=9385\'))

有没有办法让get\\u帖子只抓取两个类别中的帖子,如上所述?

1 个回复
最合适的回答,由SO网友:Milo 整理而成

Use WP_Query\'s category__and:

$args = array(
    \'posts_per_page\' => 5,
    \'category__and\' => array( 93, 85 )
);

$my_query = new WP_Query( $args );
while( $my_query->have_posts() ):
    $my_query->the_post();
    the_title();
endwhile;

wp_reset_postdata();
结束

相关推荐