Guest User

Untitled

a guest
Oct 17th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $args = array(
  2. 'posts_per_page' => -1,
  3. 'post_type' => 'news',
  4. 'orderby' => 'date',
  5. 'order' => 'DESC',
  6. 'category__not_in' => 160
  7. );
  8. $loop = new WP_Query( $args );
  9.  
  10. <?php while ( $loop->have_posts() ) : $loop->the_post();?>
  11. ...
  12. <?php endwhile; ?>
Add Comment
Please, Sign In to add comment