Skip to content

Instantly share code, notes, and snippets.

@MjHead
Last active October 1, 2018 07:11
Show Gist options
  • Save MjHead/48574bf6548bc912e755b723e6bd7250 to your computer and use it in GitHub Desktop.
Save MjHead/48574bf6548bc912e755b723e6bd7250 to your computer and use it in GitHub Desktop.
<?php
$tax = 'your-taxonomy';
$terms = wp_get_post_terms( get_the_ID(), $tax );
$delimiter = ', ';
$is_first = true;
if ( ! $terms ) {
$terms = array();
}
foreach ( $terms as $term ) {
if ( ! $is_first ) {
echo $delimiter;
} else {
$is_first = false;
}
echo $term->name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment