Skip to content

Instantly share code, notes, and snippets.

@conspirator
Last active December 22, 2015 08:38
Show Gist options
  • Save conspirator/6446375 to your computer and use it in GitHub Desktop.
Save conspirator/6446375 to your computer and use it in GitHub Desktop.
<?php
// Writes the appropriate #leftnav menu based on page id
$current_page_id = get_the_ID();
$amenities_sub_nav_pages = array(34, 63);
if (in_array($current_page_id, $amenities_sub_nav_pages)) {
wp_nav_menu(array(
'container' => 'false',
'menu' => 'amenities-sub-nav',
'menu_id' => 'leftnav'
));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment