Levdbas
9/6/2017 - 7:55 PM

Custom taxonomy van post

eventueel uit te breiden met

$termcount = 0; $len = count($terms);

voor een scheidingsteken.

$post = get_post();
$custom_tags = wp_get_object_terms( $post->ID, 'jouw-custom-taxonomy' );
if ( ! empty( $custom_tags ) ) {
if ( ! is_wp_error( $custom_tags ) ) {
echo '<ul>';
foreach( $custom_tags as $term ) {
echo '<li><a href="' . get_term_link( $term->slug, 'jouw-custom-taxonomy' ) . '">' . esc_html( $term->name ) . '</a></li>';
}
echo '</ul>';
}