/*Проверка подкатегории на вхождение в категорию */
function this_my_category ($cats){
function post_is_in_descendant_category( $cats, $_post = null )
{
foreach ( (array) $cats as $cat ) {
$descendants = get_term_children( (int) $cat, 'category');
if ( $descendants && in_category( $descendants, $_post ) )
return true;
}
return false;
}
if ( in_category( $cats ) || post_is_in_descendant_category( $cats ) ) {return true;}
else {return false;}
}