如何使用WP_Query
从两种自定义帖子类型(团队,工作)中获取所有帖子?
这是我的代码:
$args = array(
'post_type' => 'team',
'post_per_page'=>-1
);
$query = new WP_Query( $args );
答案 0 :(得分:1)
您可以使用允许类型的数组:
$args = array(
'post_type' => array( 'team', 'work' ), // Specify your types here
'posts_per_page' => -1 // Fixed typo here refer to postS
);
$query = new WP_Query( $args );
完整documentation包含有关如何使用WP_Query
的更多示例。
答案 1 :(得分:0)
您可以在此处使用此代码进行查询。
$args = array(
'post_type' => array( 'team','work' ),
'post_per_page'=>-1
);
$query = new WP_Query( $args );
以及以后的参考文章检查这篇文章
答案 2 :(得分:0)
git commit