Add second loop to stats page
This commit is contained in:
parent
2500235c19
commit
7b162367d0
1 changed files with 10 additions and 0 deletions
|
|
@ -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(); ?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue