Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. $args = array(
  4. 'post_type' => 'clips',
  5. 'ignore_sticky_posts' => true,
  6. 'posts_per_page' => 1,
  7. 'cat' => 6
  8. );
  9.  
  10. $clips_query = new WP_Query( $args );
  11.  
  12. ?>
  13.  
  14. <?php if ( $clips_query->have_posts() ): ?>
  15.  
  16. <?php while( $clips_query->have_posts() ) : $clips_query->the_post(); ?>
  17.  
  18. <h1 style="color:red"><?php the_title(); ?></h1>
  19.  
  20. <?php endwhile; ?>
  21.  
  22. <?php wp_reset_postdata(); ?>
  23.  
  24. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement