Description
The “ims_update_users” action runs after multiple users (customers) have been updated.
A plugin (or theme) can add an action with the code:
<?php add_action( 'ims_update_users', 'filter_function_name'); ?>
The hook is located in the image-store/_inc/customers.php file.
Example
// apply action function action_ims_update_users( $customers ) { //run action here } add_action('ims_update_users', 'action_ims_update_users');
Note: $customers is a numeric array containing user ids.