pre_user_search action-hookWP 1.0

Usage

add_action( 'pre_user_search', 'wp_kama_pre_user_search_action' );

/**
 * Function for `pre_user_search` action-hook.
 * 
 * @param  $array 
 *
 * @return void
 */
function wp_kama_pre_user_search_action( $array ){

	// action...
}
$array
-

Where the hook is called

WP_User_Search::prepare_query()
pre_user_search
wp-admin/includes/deprecated.php 560
do_action_ref_array( 'pre_user_search', array( &$this ) );

Where the hook is used in WordPress

Usage not found.