Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. // The Query
  3. $args=array (
  4. 'reihe' => 'bochum-detektive',
  5. 'posts_per_page' => -1,
  6. 'orderby' => 'date',
  7. 'order' => DESC
  8. );
  9. $the_query = new WP_Query($args);
  10. // The Loop
  11. while ( $the_query->have_posts() ) :
  12. $the_query->the_post();
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement