Skip to content

Instantly share code, notes, and snippets.

@digitalhydra
Created December 1, 2017 22:53
Show Gist options
  • Save digitalhydra/73fb5f908eb385a2a9cbcc397b9979ce to your computer and use it in GitHub Desktop.
Save digitalhydra/73fb5f908eb385a2a9cbcc397b9979ce to your computer and use it in GitHub Desktop.
<?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