dragunoff

wpquestions.com, ID = 2851(3)

Aug 17th, 2011
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1. <?php
  2. /**
  3.  * loop-trustees.php
  4.  *
  5.  * this file must be placed in the directory of the theme
  6.  */
  7. ?>
  8.  
  9. <div <?php post_class(); ?>>
  10.  
  11.     <?php // post thumbnail
  12.     if ( has_post_thumbnail()) { ?>
  13.         <a href="<?php the_permalink(); ?>">
  14.         <?php the_post_thumbnail(); ?>
  15.         </a>
  16.     <?php } ?>
  17.    
  18.     <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br />
  19.    
  20.     <?php // get list of terms (not hyperlinked)
  21.     $terms = get_the_terms( $post->id, 'Position' );
  22.    
  23.     if ( $terms && !is_wp_error($terms) ) {
  24.    
  25.         $positions = array();
  26.  
  27.         foreach ($terms as $term) {
  28.             $positions[] = $term->name;
  29.         }
  30.        
  31.         $positions = join( ', ', $positions );
  32.     ?>
  33.  
  34.     Position: <?php echo $positions; ?>
  35.  
  36.     <?php } ?>
  37.    
  38. </div>
Advertisement
Add Comment
Please, Sign In to add comment