FrontEndMike

Atlanta, GA - Front End Web Developer

Echo Category Name of Current Custom Posttype

Echo Category Name of Current Custom Posttype


<?php 
  $terms = wp_get_post_terms( $post->ID, 'custom_cat'); 
     foreach ( $terms as $term ) { 
        echo "<h4>"; 
        echo $term->name.' '; 
        echo "</h4>"; 
      } 
?>
View All Posts