is_in_category(85, 88);
function is_in_category($idSeacrh, $thisCatId){
$parentId = get_category($thisCatId)->category_parent;
if($parentId == $idSeacrh){
return 'yes';
}elseif($idSeacrh == $thisCatId){
return 'yes';
}else{
is_in_category($idSeacrh, $parentId);
}
return 'no';
}