有没有办法将帖子从wp_query分成多个帖子类型。假设我有一个wp_query的参数是'post_types' => array('post', 'plays')
现在,在查询后,我收到了来自post
和plays
帖子类型的大量帖子结果,那么我如何将posts
与post
和plays
分开?< / p>
答案 0 :(得分:1)
将其添加为参数,如下所示:
$args = array(
'orderby' => 'type',
'order' => 'DESC',
);
$query = new WP_Query( $args );
答案 1 :(得分:0)
在处理项目的循环中,您可以使用post_type属性检查不同的帖子类型
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
if($post->post_type=="post"){
//Do something
}
elseif($post->post_type=="plays"){
//Do something
}
} // end while
} // end if