Guest User

Untitled

a guest
Jan 21st, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php $tour_types = get_terms( 'tour_type', 'orderby=name&hide_empty=1' ); $count = count($tour_types); if ( $count > 0 ){ foreach ( $tour_types as $tour_type ) { ?>
  2. <li><a href="<?php bloginfo('url');?>/tours/type/<?php echo $tour_type->slug; ?>">
  3. <!-- -->
  4. <?php $tax = $tour_type->slug; ?>
  5. <?php $args = array( 'numberposts' => 1, 'tour_type'=> $tax ); $postslist = get_posts( $args ); foreach ($postslist as $post) : ?>
  6. <img src="<?php bloginfo('template_url'); ?>/assets/i/plane-test.png" alt="<?php the_title(); ?>">
  7. <?php endforeach; ?>
  8. <!-- -->
  9. <?php echo $tour_type->name; ?>
  10. </a></li>
  11. <?php }} ?>
Add Comment
Please, Sign In to add comment