Advertisement
Guest User

Untitled

a guest
Jun 30th, 2012
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'posts_per_page' => 1,
  4. 'tag' => 'featured',
  5. );
  6.  
  7. $featured = new WP_Query($args);
  8.  
  9. if($featured->have_posts()): while($featured->have_posts()): $featured->the_post();
  10. the_title();
  11. the_content();
  12. endwhile; else:
  13.  
  14. endif;
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement