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
/** Gerar ID's para usuários **/ | |
add_action( 'user_register', 'my_on_user_register' ); | |
function my_on_user_register( $user_id ) { | |
$unique_id = 6395730800131050 + $user_id; | |
update_user_meta( $user_id, 'my_unique_id', $unique_id ); | |
} | |
//display decal code on profile | |
add_action('show_user_profile', 'my_extra_user_profile_fields'); | |
add_action('edit_user_profile', 'my_extra_user_profile_fields'); | |
function my_extra_user_profile_fields($user){ |
NewerOlder