Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created December 28, 2015 02:36
Show Gist options
  • Select an option

  • Save nathaningram/ad6b35298e192d9a261c to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/ad6b35298e192d9a261c to your computer and use it in GitHub Desktop.
// 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