stuart-b
5/22/2015 - 1:24 PM

Get custom taxonomy

Get custom taxonomy

// Get taxonomy
$terms = get_the_terms($post_id, 'taxonomy-slug');

$taxonomies = [];

foreach ($terms as $term) {
$taxonomies[] = $term->name;
}

$taxonomy = join(", ", $taxonomies);