WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
937 |
|
938 | /** |
939 | * Filter the query arguments for the user drop-down. |
940 | * |
941 | * @since 4.4.0 |
942 | * |
943 | * @param array $query_args The query arguments for wp_dropdown_users(). |
944 | * @param array $r The default arguments for wp_dropdown_users(). |
945 | */ |
946 | $query_args = apply_filters( 'wp_dropdown_users_args', $query_args, $r ); |
947 |
|
948 | $users = get_users( $query_args ); |
949 |
|
950 | $output = ''; |
951 | if ( ! empty( $users ) && ( empty( $r['hide_if_only_one_author'] ) || count( $users ) > 1 ) ) { |
952 | $name = esc_attr( $r['name'] ); |
953 | if ( $r['multi'] && ! $r['id'] ) { |
954 | $id = ''; |
955 | } else { |