Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created January 9, 2019 00:03
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 KaineLabs/bd1426c95e52ba5daaa09b1e5e19945c to your computer and use it in GitHub Desktop.
Save KaineLabs/bd1426c95e52ba5daaa09b1e5e19945c to your computer and use it in GitHub Desktop.
Change Profile Header Full Name with Username
<?php
function yzc_user_profile_username( $name ) {
if ( ! bp_is_user() ) {
return $name;
}
return yz_data( 'user_login' );
}
add_filter( 'yz_user_profile_username', 'yzc_user_profile_username' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment