I need to check if a certain post belongs to a category or belongs to a descendant of a certain category.
Is there a WordPress function for this, or do I need to do it myself?
I should have mentioned that the WP version is 2.7.
I need to check if a certain post belongs to a category or belongs to a descendant of a certain category.
Is there a WordPress function for this, or do I need to do it myself?
I should have mentioned that the WP version is 2.7.
You must be logged in to post a comment.
For 2.7 or above use
in_category($category, $_post)
For more info see the get_post and cat is ancestor of references. Also, while somewhat difficult to find this is a good place to start for most wp development related things.