Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created June 8, 2015 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathaningram/43ef5b3b1882e0412cbe to your computer and use it in GitHub Desktop.
Save nathaningram/43ef5b3b1882e0412cbe to your computer and use it in GitHub Desktop.
User First Name Shortcode
// First Name of Logged In User Shortcode
function ni_firstname() {
$user = wp_get_current_user();
$firstname = $user->user_firstname;
return $firstname;
}
add_shortcode('firstname', 'ni_firstname');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment