How Can I Echo Out 100% of the_post in WordPress?

So I query the posts, I get back everything that matches, then do my loop – but I want to do some sort of print_r type thing on each loop so I can see 100% of what data is being fetched. I’ve got a total brain block here.. Help!

Here is my query, and then my loop:

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

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

Just can’t figure out how to echo out 100% of what was fetch through each iteration of the loop?

Thanks for the help everyone!

Related posts

Leave a Reply

3 comments

  1. I like to add the following to the top of any of my single php pages where I want to see the output…

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

    and in the loop :-

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