Skip to content

Instantly share code, notes, and snippets.

@pije76
Forked from cryptexvinci/um-profile-show-id.php
Last active June 20, 2019 07:17
Show Gist options
  • Save pije76/32fb7f422e08e2dce5bc46d3242096fb to your computer and use it in GitHub Desktop.
Save pije76/32fb7f422e08e2dce5bc46d3242096fb to your computer and use it in GitHub Desktop.
Ultimate member - Display User ID below Username in Profile Page. (*Cek Profile Programmmernya)
/**
* Ultimate member - Display User ID below Username in Profile Page.
* @link https://wordpress.org/plugins/ultimate-member/
*/
function custom_display_id_profile_page(){
echo '<p>';
esc_html_e( 'Membership ID: ', 'theme-name');
echo um_profile_id();
echo '</p>';
}
add_action( 'um_after_profile_header_name_args', 'custom_display_id_profile_page', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment