Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_posts_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
125                /**
126                 * Filters the sitemap entry for an individual post.
127                 *
128                 * @since 5.5.0
129                 *
130                 * @param array   $sitemap_entry Sitemap entry for the post.
131                 * @param WP_Post $post          Post object.
132                 * @param string  $post_type     Name of the post_type.
133                 */
134                $sitemap_entry = apply_filters( 'wp_sitemaps_posts_entry', $sitemap_entry, $post, $post_type );
135                $url_list[]    = $sitemap_entry;
136           }
137
138           return $url_list;
139      }
140
141      /**
142       * Gets the max number of pages available for the object type.
143       *