Skip to content

Instantly share code, notes, and snippets.

@jimmy89Li
Created December 8, 2015 10:13
Show Gist options
  • Save jimmy89Li/1b390050d1354d648653 to your computer and use it in GitHub Desktop.
Save jimmy89Li/1b390050d1354d648653 to your computer and use it in GitHub Desktop.
If logged-in see Menu1. Else Menu2.
<?php
if( is_user_logged_in() ) {
$menu = 'Menu1';
} else {
$menu = 'Menu2';
}
wp_nav_menu( array( 'menu' => $menu, 'container_class' => 'menu-header', 'theme_location' => 'primary' ) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment