Advertisement
bastetmilo

Tax terams with images

Jun 12th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. <?php
  2.  
  3. $terms = apply_filters( 'taxonomy-images-get-terms', '', array('taxonomy' => 'bm_tax_products_company') );
  4.  
  5. if ( ! empty( $terms ) ) {
  6.     foreach( (array) $terms as $term ) {
  7. ?>
  8. <div class="col-md-4">
  9.     <div class="services-post">
  10.     <a href="<?php echo get_bloginfo( 'url') .'/?qmt[bm_tax_products_company][]='. $term->term_id; ?>">
  11.         <?php echo wp_get_attachment_image( $term->image_id, 'cmpny_img' ); ?>
  12.     </a>
  13.     <div class="services-post-content">
  14.         <h4><?php echo $term->name; ?></h4>
  15.         <p><?php echo $term->description; ?></p>
  16.     </div>
  17.     </div>
  18. </div>
  19. <?php  
  20.  
  21.     }
  22.  
  23. }
  24.  
  25.  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement