Created
December 1, 2017 22:53
-
-
Save digitalhydra/73fb5f908eb385a2a9cbcc397b9979ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php cat_is_ancestor_of( $cat1, $cat2 ); ?> | |
<?php | |
// if the category is music or a music SUBcategory, | |
if (cat_is_ancestor_of(4, $cat) or is_category(4)): ?> | |
<div id="music_subnav_menu" class="subnav_menu"> | |
<?php wp_nav_menu( array('menu' => 'Music' )); ?> | |
</div> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment