shortcodes.php 175 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 <?php add_shortcode( 'firstname', 'firstname' ); function firstname(){ $user = get_userdata( get_current_user_id() ); return "<h1>Hi ".$user->first_name."</h1>"; }