创建新的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”]等?
答案 0 :(得分:0)
使用while循环播放帖子。请参阅WP_Query
中的示例while($bo_query->have_posts()):
$bo_query->the_post();
echo get_the_ID();
the_title();
endwhile;