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

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -