FrontEndMike

Atlanta, GA - Front End Web Developer

Echo Category Slug of Current Custom Post type

Echo Category Slug of Current Custom Post type



<?php $my_terms = get_the_terms( $post->ID, 'custom_cat' ); 
    if( $my_terms && !is_wp_error( $my_terms ) ) { 
       foreach( $my_terms as $term ) { 
             echo $term->slug; } 
}?>"
View All Posts