Advertisement
grvrulz

Untitled

Apr 24th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php
  2. $terms = get_the_terms( $post->ID, 'brand' );
  3.                        
  4. if ( $terms && ! is_wp_error( $terms ) ) :
  5.  
  6.     $brand_links = array();
  7.  
  8.     foreach ( $terms as $term ) {
  9.         $brand_links[] = $term->name;
  10.     }
  11.                        
  12.     $on_brand = join( ", ", $brand_links );
  13. ?>
  14.  
  15. <p class="brand">
  16.     <span><?php echo $on_brand; ?></span>
  17. </p>
  18.  
  19. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement