如何获取自定义WP_query对象

时间:2018-02-11 10:20:21

标签: wordpress custom-post-type custom-wordpress-pages

创建新的WP_query后,我收到了一个结果,但无法理解如何从“posts”元素(ID,post_title等)中获取数据:

<style>
.startab {
  display: none;
}
</style>
<script>
$(".startab").delay(5000).show();
</script>

================================

$bo_query = new WP_query(
        array(
            'post_type' => 'condominium',
            'post_per_page' => -1
        )
    );

我需要做些什么来从[“posts”]对象中获取[“post_title”],[“post_name”]等?

1 个答案:

答案 0 :(得分:0)

使用while循环播放帖子。请参阅WP_Query

中的示例
while($bo_query->have_posts()):
    $bo_query->the_post();

    echo get_the_ID();
    the_title();

endwhile;