Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_taxonomies_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
120                      *
121                      * @since 5.5.0
122                      * @since 6.0.0 Added `$term` argument containing the term object.
123                      *
124                      * @param array   $sitemap_entry Sitemap entry for the term.
125                      * @param int     $term_id       Term ID.
126                      * @param string  $taxonomy      Taxonomy name.
127                      * @param WP_Term $term          Term object.
128                      */
129                     $sitemap_entry = apply_filters( 'wp_sitemaps_taxonomies_entry', $sitemap_entry, $term->term_id, $taxonomy, $term );
130                     $url_list[]    = $sitemap_entry;
131                }
132           }
133
134           return $url_list;
135      }
136
137      /**
138       * Gets the max number of pages available for the object type.