c932a13d by Jeff Balicki

sss

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