wp_list_users_args

wp_list_users_args

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_list_users_args') is found 1 times:

  • /wp-includes/user.php line 873
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    *
     * @param array $query_args  The query arguments for get_users().
     * @param array $parsed_args The arguments passed to wp_list_users() combined with the defaults.
     */
    $query_args = apply_filters( 'wp_list_users_args', $query_args, $parsed_args );
     
    $users = get_users( $query_args );
     
    foreach ( $users as $user_id ) {
        $user = get_userdata( $user_id );