Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $args = array(
- 'post_type' => 'presenters',
- 'posts_per_page' => 1,
- 'tax_query' => array(
- array (
- 'taxonomy' => 'Presenter-type',
- 'field' => 'slug',
- 'terms' => 'hometwo'
- )
- )
- );
- $query = new WP_Query ( $args );
- ?>
- <?php if ($query->have_posts()) : ?>
- <?php while ($query->have_posts()) : $query->the_post(); ?>
- <a href="<?php the_permalink(); ?>">
- <?php the_post_thumbnail(); ?>
- <h3><?php the_title(); ?></h3>
- <p><?php the_excerpt(); ?></p></a>
- <?php endwhile; ?>
- <?php else : ?>
- <?php endif; ?>
- <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment