Skip to content

Instantly share code, notes, and snippets.

@sareiodata
Created December 16, 2012 14:00
Show Gist options
  • Save sareiodata/4307554 to your computer and use it in GitHub Desktop.
Save sareiodata/4307554 to your computer and use it in GitHub Desktop.
if (is_user_logged_in()){
wp_nav_menu( array(
'menu' => 'Logged In Menu',
'container_class' => 'logged-in-menu',
'theme_location' => 'logged-in'
));
} else {
wp_nav_menu( array(
'menu' => 'Visitor Menu',
'container_class' => 'visitor-menu',
'theme_location' => 'visitor'
));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment