Skip to content

Instantly share code, notes, and snippets.

@rali14
Last active May 4, 2022 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rali14/d672dd2d7c0e981fb14cefe633fed65f to your computer and use it in GitHub Desktop.
Save rali14/d672dd2d7c0e981fb14cefe633fed65f to your computer and use it in GitHub Desktop.
Display the username instead of first name on Account menu item
function custom_menu_item_name () {
$current_user = wp_get_current_user();
return $current_user->user_login;
}
add_filter( 'listify_acount_menu_user_label', custom_menu_item_name, 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment