简体   繁体   中英

Getting user id or other info from user_register in WP

I'm trying to extract or get atleast the user_id upon registration in WP using user_register hook. But the alert doesn't even shows up.

add_action( 'user_register', 'display_id' );

function display_id( $user_id ) {
    echo '<script type="text/javascript">alert("Registration successful");</script>';
}
add_action( 'user_register', 'display_id', 10, 1);

function display_id( $user_id ) {
    echo '<script type="text/javascript">alert("Registration successful");</script>';
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM