Guest User

Untitled

a guest
May 17th, 2013
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'post_type' => 'presenters',
  4. 'posts_per_page' => 1,
  5. 'tax_query' => array(
  6. array (
  7. 'taxonomy' => 'Presenter-type',
  8. 'field' => 'slug',
  9. 'terms' => 'hometwo'
  10. )
  11. )
  12. );
  13.  
  14.  
  15.  
  16. $query = new WP_Query ( $args );
  17.  
  18.  
  19. ?>
  20.  
  21. <?php if ($query->have_posts()) : ?>
  22. <?php while ($query->have_posts()) : $query->the_post(); ?>
  23.  
  24. <a href="<?php the_permalink(); ?>">
  25. <?php the_post_thumbnail(); ?>
  26. <h3><?php the_title(); ?></h3>
  27. <p><?php the_excerpt(); ?></p></a>
  28. <?php endwhile; ?>
  29. <?php else : ?>
  30. <?php endif; ?>
  31.  
  32. <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment