How To Get Username In WordPress Using PHP Leave a Comment / WordPress / By job To get the current username in wordpress using php you have write this custom code in functions.php function getUser(){ $current_user = wp_get_current_user(); $userName = $current_user->display_name; ?> And then you can user this shortcode [username] anywhere that you want to output the user name.