Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I I am looking for a function that merely returns true or false. The function would check if the category archive being queried is a child of a particular parent category. The function would look something like this (similar to the is_category() function):

if(is_child_of_category('3')){ //do something }
if(is_child_of_category('4')){ //do something else }
if(is_child_of_category('5')){ //do something entirely different }

I have looked through the documentation and the forums but have not found any solutions, any ideas if this has been done or how one would go about it?

///////////// addendum ////////////

Here is the working code that I wrote with help from Gavin:

Thanks Gavin

first a function for the functions.php file to get the category id:

function getCurrentCatID(){
global $wp_query;
if(is_category() || is_single()){
$cat_ID = get_query_var('cat');
}
return $cat_ID;
}

Next use cat_is_ancestor_of

$post = $wp_query->post;
$id = getCurrentCatID();

if ( cat_is_ancestor_of(3, $id) { include(TEMPLATEPATH . '/unique.php'); }

share|improve this question

1 Answer

up vote 1 down vote accepted

cat_is_ancestor_of

This will return true still, however, if the category is a grandchild of the specified category.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.