Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from JiveDig/show_post_terms.php
Created July 24, 2024 18:03
Show Gist options
  • Save dgoze/489ed894dbf2a0ea5bd6ff7376ee38ef to your computer and use it in GitHub Desktop.
Save dgoze/489ed894dbf2a0ea5bd6ff7376ee38ef to your computer and use it in GitHub Desktop.
Show post terms with links - get_the_term_list
<?php
$language = wp_get_post_terms($post->ID, 'ft_language');
if( $language ) {
echo get_the_term_list( $post->ID, 'ft_language', '<li><span class="detail">Languages:</span>', ', ', '</li>' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment