Advertisement
Guest User

wordpress categories by name loop

a guest
May 17th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. $args = array( 'post_type' => 'post',
  3. //'category_name' => array('Ins', 'Pub'),
  4. //'cat' => '7,10',
  5. 'orderby' => 'date', 'order' => 'DESC',
  6. 'posts_per_page' => 17 );
  7. $loop = new WP_Query( $args );
  8. // The beginning of the loop looks like this:
  9. while ( $loop->have_posts() ) : $loop->the_post();
  10. $post_id = get_the_ID();
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement