Skip to content

Instantly share code, notes, and snippets.

@BeardedGinger
Created December 21, 2013 05:09
Show Gist options
  • Save BeardedGinger/8065680 to your computer and use it in GitHub Desktop.
Save BeardedGinger/8065680 to your computer and use it in GitHub Desktop.
Get different templates based on whether or not the visitor is logged in
if ( is_user_logged_in() ) {
get_template_part( 'home', 'loggedin' );
} else {
get_template_part( 'home', 'notloggedin' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment