Answers for "get terms by taxonomy name"

PHP
1

get taxonomy name in singhle post

// RETRIVE TERM SLUG ( for single.php or template-part )

$terms = get_the_terms( $post->ID, 'your-taxonomy' );
if ( !empty( $terms ) ){
    // get the first term
    $term = array_shift( $terms );
    echo $term->slug;
}
Posted by: Guest on May-13-2020

Code answers related to "get terms by taxonomy name"

Browse Popular Code Answers by Language