c932a13d by Jeff Balicki

sss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 007853fd
...@@ -4,6 +4,6 @@ add_shortcode( 'firstname', 'firstname' ); ...@@ -4,6 +4,6 @@ add_shortcode( 'firstname', 'firstname' );
4 4
5 function firstname(){ 5 function firstname(){
6 $user = get_userdata( get_current_user_id() ); 6 $user = get_userdata( get_current_user_id() );
7 return "<span class='first-name'>Hi ".$user->first_name."</span>"; 7 return "<h1>Hi ".$user->first_name."</h1>";
8 8
9 } 9 }
......