-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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