Advertisement
Guest User

Untitled

a guest
Jan 29th, 2014
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. $postIDs = array( "1928", "2066", "2009" );
  3. $front_query_args = array(
  4. 'posts_per_page' => -1,
  5. 'post__in' => $postIDs,
  6. 'ignore_sticky_posts' => 1
  7. );
  8.  
  9. $front_query = new WP_Query( $front_query_args ); ?>
  10.  
  11. <?php if ( $front_query->have_posts() ) : ?>
  12. <?php /* Start the Loop */ ?>
  13. <?php while ( $front_query->have_posts() ) : $front_query->the_post(); ?>
  14. ... fill in whatever is appropriate ...
  15. <?php endwhile; ?>
  16. <?php else : ?>
  17. ... do something else ...
  18. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement