如何在WP_Query中使用多个post_type?

时间:2016-10-02 17:30:25

标签: php wordpress advanced-custom-fields posts

我创建了自定义字段,并使用right join输出它们。我有一个“可见性部分”和“可信度部分”,每个设置在ACF插件中的自定义帖子类型。我的可见性部分工作正常,但我需要弄清楚如何将我的可信度类型添加到数组参数,以便我可以在底部输出我的帖子。我不认为我可以添加另一个post_type => 'reputation_section'给它......

WP_Query

1 个答案:

答案 0 :(得分:4)

  

您可以在post_type参数中使用数组传递多个WP_Query

$args = array(
    'post_type' => array( 'visibility_section', 'credibility_section')
);
$query = new WP_Query( $args );

<小时/> 参考: