php - is_subcategory(); function for wordpress -
php - is_subcategory(); function for wordpress -
hi know there many nice functions in wordpress is_page()
, is_single()
, is_category();
...
do u know how can create is_subcategory()
function?
thanks million.
there not is_subcategory()
function can children (sub category) of category , utilize conditional statement. <?php global $ancestor; $childcats = get_categories('child_of=' . $cat . '&hide_empty=1'); foreach ($childcats $childcat) { if (cat_is_ancestor_of($ancestor, $childcat->cat_id) == false){ //do stuff } } ?>
php wordpress category
Comments
Post a Comment