Skip to content

Instantly share code, notes, and snippets.

@enlacee
Last active October 19, 2021 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enlacee/abc3a05c2380601add7eacc40c13a8a8 to your computer and use it in GitHub Desktop.
Save enlacee/abc3a05c2380601add7eacc40c13a8a8 to your computer and use it in GitHub Desktop.
get_display_name php wordpress
<?php
/**
* REF
* https://wordpress.stackexchange.com/questions/59435/how-to-get-current-user-name-by-user-id-in-buddypress
*/
function get_display_name($user_id) {
if (!$user = get_userdata($user_id))
return false;
return $user->data->display_name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment