Changeset 49137
- Timestamp:
- 10/13/2020 03:02:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php
r48840 r49137 100 100 if ( ! empty( $taxonomy_terms->terms ) ) { 101 101 foreach ( $taxonomy_terms->terms as $term ) { 102 $term_link = get_term_link( $term, $taxonomy ); 103 104 if ( is_wp_error( $term_link ) ) { 105 continue; 106 } 107 102 108 $sitemap_entry = array( 103 'loc' => get_term_link( $term ),109 'loc' => $term_link, 104 110 ); 105 111
Note: See TracChangeset
for help on using the changeset viewer.