Skip to content

Instantly share code, notes, and snippets.

@leoken
Created September 16, 2011 21:34
Show Gist options
  • Save leoken/1223220 to your computer and use it in GitHub Desktop.
Save leoken/1223220 to your computer and use it in GitHub Desktop.
WP Different Menus for Logged In or Logged Out Users
<?php
if ( is_user_logged_in() ) {
wp_nav_menu( array( 'theme_location' => 'logged-in-menu' ) );
} else {
wp_nav_menu( array( 'theme_location' => 'logged-out-menu' ) );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment