<?php $terms = wp_get_post_terms( $query->post->ID, array( 'country', 'subject' ) ); ?> <?php foreach ( $terms as $term ) : ?> <p><?php echo $term->taxonomy; ?>: <?php echo $term->name; ?></p> <?php endforeach; ?>