Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_users_query_args

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
144            *
145            * Allows modification of the authors query arguments before querying.
146            *
147            * @see WP_User_Query for a full list of arguments
148            *
149            * @since 5.5.0
150            *
151            * @param array $args Array of WP_User_Query arguments.
152            */
153           $args = apply_filters(
154                'wp_sitemaps_users_query_args',
155                array(
156                     'has_published_posts' => array_keys( $public_post_types ),
157                     'number'              => wp_sitemaps_get_max_urls( $this->object_type ),
158                )
159           );
160
161           return $args;
162      }