- Timestamp:
- 11/18/2021 01:48:43 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php
r51788 r52204 57 57 * @param int $page_num Page of results. 58 58 * @param string $object_subtype Optional. Taxonomy name. Default empty. 59 * @return array Array of URLsfor a sitemap.59 * @return array[] Array of URL information for a sitemap. 60 60 */ 61 61 public function get_url_list( $page_num, $object_subtype = '' ) { … … 77 77 * @since 5.5.0 78 78 * 79 * @param array 80 * @param string $taxonomy Taxonomy name.81 * @param int $page_num Page of results.79 * @param array[]|null $url_list The URL list. Default null. 80 * @param string $taxonomy Taxonomy name. 81 * @param int $page_num Page of results. 82 82 */ 83 83 $url_list = apply_filters( … … 150 150 151 151 /** 152 * Filters the max number of pages before it is generated.152 * Filters the max number of pages for a taxonomy sitemap before it is generated. 153 153 * 154 154 * Passing a non-null value will short-circuit the generation, … … 157 157 * @since 5.5.0 158 158 * 159 * @param int 160 * @param string $taxonomy Taxonomy name.159 * @param int|null $max_num_pages The maximum number of pages. Default null. 160 * @param string $taxonomy Taxonomy name. 161 161 */ 162 162 $max_num_pages = apply_filters( 'wp_sitemaps_taxonomies_pre_max_num_pages', null, $taxonomy );
Note: See TracChangeset
for help on using the changeset viewer.