Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. $currentID = get_the_ID();
  3.  
  4. $args = array(
  5. 'post_type' => 'nieuws',
  6. 'orderby' => 'date',
  7. 'post__not_in' => array($currentID),
  8. 'nieuwssoort' => current$term->slug,
  9. 'posts_per_page' => '7',
  10. );
  11.  
  12. $the_query = new WP_Query( $args );
  13. ?>
  14.  
  15. <?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement