Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created September 14, 2013 21:40
Show Gist options
  • Save theukedge/6565893 to your computer and use it in GitHub Desktop.
Save theukedge/6565893 to your computer and use it in GitHub Desktop.
<?php
// DISPLAY USER'S FIRST NAME
function user_first_name() {
global $current_user;
get_currentuserinfo();
$first_name = esc_attr( $current_user->user_firstname );
return $first_name;
}
add_shortcode( 'user_first_name', 'user_first_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment