category - Display all categories assigned to a custom post type using post id wordpress -
i have created custom post type in wordpress site. , added many posts custom post type.
i want display categories assigned each posts in custom post type. please me. thankz...
you can try:
$terms = get_the_terms($post->id, 'your_taxonomy_name');
http://codex.wordpress.org/function_reference/get_the_terms
but have set taxonomy cpt first:
http://codex.wordpress.org/function_reference/register_taxonomy
Comments
Post a Comment