um_after_user_status_is_changed
Hook type
Action
Description
Action after user status changed
Parameters
$status
(string) User Status
Usage
add_action( 'um_after_user_status_is_changed', 'function_name', 10, 1 );
Examples
<?php add_action( 'um_after_user_status_is_changed', 'my_after_user_status_is_changed', 10, 1 ); function my_after_user_status_is_changed( $status ) { // your code here } ?>
Change Log
Since: 2.0
Source
um_after_user_status_is_changed
is located in includes/core/class-user.php::line 1017