um_after_user_status_is_changed_hook

Hook type

Action

Description

Action after user status changed

Usage

add_action( 'um_after_user_status_is_changed_hook', 'function_name', 10 );

Examples

<?php
add_action( 'um_after_user_status_is_changed_hook', 'my_after_user_status_is_changed', 10 );
function my_after_user_status_is_changed() {
    // your code here
}
?>

Change Log

Since: 2.0

Source

um_after_user_status_is_changed_hook is located in includes/core/class-user.php::line 996