Skip to content

Instantly share code, notes, and snippets.

@marcosnakamine
Last active March 21, 2017 20:03
Show Gist options
  • Save marcosnakamine/d6b0d9c5c62c6a7a8901d8326e0194c8 to your computer and use it in GitHub Desktop.
Save marcosnakamine/d6b0d9c5c62c6a7a8901d8326e0194c8 to your computer and use it in GitHub Desktop.
WordPress - Show user info if logged in
<?php
if( is_user_logged_in() ) {
$user = wp_get_current_user();
echo $user->display_name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment