Search code examples
wordpresscategoriestaxonomycustom-post-typeposts

Display all categories assigned to a custom post type using post id wordpress


i have created a custom post type in my WordPress site. and i am added many posts to that custom post type.

i want to display all categories assigned to each posts in that custom post type. please help me. thankz...


Solution

  • You can try:

    $terms = get_the_terms($post->ID, 'your_taxonomy_name');
    

    http://codex.wordpress.org/Function_Reference/get_the_terms

    but you have to set a taxonomy for you CPT first:

    http://codex.wordpress.org/Function_Reference/register_taxonomy