如何从两个自定义帖子类型获取所有帖子?

时间:2017-04-19 07:34:02

标签: wordpress

如何使用WP_Query从两种自定义帖子类型(团队,工作)中获取所有帖子?

这是我的代码:

$args = array(
    'post_type' => 'team',
    'post_per_page'=>-1
);
$query = new WP_Query( $args );

3 个答案:

答案 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 );

以及以后的参考文章检查这篇文章

https://codex.wordpress.org/Class_Reference/WP_Query

答案 2 :(得分:0)

git commit