How do I show child categories if in a parent category, and posts if in a child?
Solved, thanks to nofearinc on the wp.org irc chat! 🙂 https://gist.github.com/mpeshev/cb1cd3c56d06017b3d87 <?php $cat_id = get_query_var(‘cat’); if( ! empty( $cat_id ) ) { $category = get_category( $cat_id, ARRAY_A ); if( ! empty( $category ) ) { // parent category if( $category[‘parent’] === ‘0’ ) { // get child IDs $terms = get_term_children( $cat_id, ‘category’ ); foreach( … Read more