Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_users_entry

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
72
73                /**
74                 * Filters the sitemap entry for an individual user.
75                 *
76                 * @since 5.5.0
77                 *
78                 * @param array   $sitemap_entry Sitemap entry for the user.
79                 * @param WP_User $user          User object.
80                 */
81                $sitemap_entry = apply_filters( 'wp_sitemaps_users_entry', $sitemap_entry, $user );
82                $url_list[]    = $sitemap_entry;
83           }
84
85           return $url_list;
86      }
87
88      /**
89       * Gets the max number of pages available for the object type.
90       *