如何在Wordpress中回收100%的_post?

时间:2012-06-07 22:46:14

标签: wordpress loops

所以我查询帖子,我找回匹配的所有东西,然后做我的循环 - 但我想在每个循环上做一些print_r类型的东西,所以我可以看到100%的数据被提取。我在这里有一个完整的脑块..帮助!

这是我的查询,然后是我的循环:

<?php query_posts('post_type=property'); ?>

<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?>

只是无法弄清楚如何在循环的每次迭代中回显100%的内容?

感谢大家的帮助!

3 个答案:

答案 0 :(得分:2)

是否必须使用循环?如果没有,那么我会尝试:

<? $posts_array = get_posts('post_type=property');
print_r($posts_array); ?>

答案 1 :(得分:0)

在你的循环中

print_r($post);

答案 2 :(得分:0)

我想在我想查看输出的任何单个php页面的顶部添加以下内容...

<?php global $post; var_dump($post);die;?>

并在循环中:-

the_post();
global $post; 
print_r($post);