Created
December 8, 2015 10:13
-
-
Save jimmy89Li/1b390050d1354d648653 to your computer and use it in GitHub Desktop.
If logged-in see Menu1. Else Menu2.
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 | |
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