• Resolved markyeoj

    (@markyeoj)


    Hi, I created an archive page for my custom post type, but I cant display the custom taxonomy.. I have two custom taxonomy
    1. recipecategory
    2. cuisine
    which is both hierarchical

    here’s my code

    the <?php the_category(', '); ?> is not working.

    what should I do?

Viewing 1 replies (of 1 total)
  • Thread Starter markyeoj

    (@markyeoj)

    done, I used this code

    $terms = get_the_terms( $post->ID , 'recipecategory' );
    	foreach ( $terms as $term ) {
    	echo $term->name . ", ";
    	}
Viewing 1 replies (of 1 total)
  • The topic ‘Display Taxonomy In Post Type Archive’ is closed to new replies.