Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * loop-trustees.php
- *
- * this file must be placed in the directory of the theme
- */
- ?>
- <div <?php post_class(); ?>>
- <?php // post thumbnail
- if ( has_post_thumbnail()) { ?>
- <a href="<?php the_permalink(); ?>">
- <?php the_post_thumbnail(); ?>
- </a>
- <?php } ?>
- <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br />
- <?php // get list of terms (not hyperlinked)
- $terms = get_the_terms( $post->id, 'Position' );
- if ( $terms && !is_wp_error($terms) ) {
- $positions = array();
- foreach ($terms as $term) {
- $positions[] = $term->name;
- }
- $positions = join( ', ', $positions );
- ?>
- Position: <?php echo $positions; ?>
- <?php } ?>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment