Add second loop to stats page

This commit is contained in:
Markus Ankenbrand 2017-02-19 17:07:49 +01:00
parent 2500235c19
commit 7b162367d0

View file

@ -57,5 +57,15 @@
<div class="clear"></div>
</div> <!-- /content -->
<?php
query_posts( 'category_name=urlaub&posts_per_page=1000' );
$postIDs = array();
while ( have_posts() ) : the_post();
$postIDs[] = $post->ID;
endwhile;
var_dump($postIDs);
?>
<?php get_footer(); ?>