I’m trying to retrieve all the categories which are related to a specific post, using the wp_get_post_categories()
function. The problem is that it is a custom post type, so I tried sending it in the $args array :
wp_get_post_categories($id,array('post_type'=>'product'));
but that returned an empty array as well.
What is the correct way of doing it?
Are you sure it a
category
, and not a custom taxonomy?If it is a category try:
or its equivalent since
category
is a taxonomy:Your post-type
product
has probably it’s own “category” taxonomy. Try: