Registration Hook is not working
-
i am trying to approve user dynamically depend of register form details
and for that i am using wordpress ‘user_register’ action hook but it’s not executing the thei place below code in my theme function.php file but it’s not calling the function
add_action( ‘user_register’, ‘myplugin_registration_save’, 10, 1 );
function myplugin_registration_save( $user_id ) {
var_dump($user_id); exit;
}
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Registration Hook is not working’ is closed to new replies.