Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_users_pre_url_list

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
42            *
43            * Passing a non-null value will effectively short-circuit the generation,
44            * returning that value instead.
45            *
46            * @since 5.5.0
47            *
48            * @param array  $url_list The URL list. Default null.
49            * @param int    $page_num Page of results.
50            */
51           $url_list = apply_filters(
52                'wp_sitemaps_users_pre_url_list',
53                null,
54                $page_num
55           );
56
57           if ( null !== $url_list ) {
58                return $url_list;
59           }
60