- Timestamp:
- 06/19/2020 10:24:14 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php
r48093 r48098 60 60 * @global WP_Rewrite $wp_rewrite WordPress rewrite component. 61 61 * 62 * @return string The sitemap stylesheet url.62 * @return string The sitemap stylesheet URL. 63 63 */ 64 64 public function get_sitemap_stylesheet_url() { … … 74 74 * Filters the URL for the sitemap stylesheet. 75 75 * 76 * If a fals y value is returned, no stylesheet will be used and76 * If a falsey value is returned, no stylesheet will be used and 77 77 * the "raw" XML of the sitemap will be displayed. 78 78 * 79 79 * @since 5.5.0 80 80 * 81 * @param string $sitemap_url Full URL for the sitemaps xslfile.81 * @param string $sitemap_url Full URL for the sitemaps XSL file. 82 82 */ 83 83 return apply_filters( 'wp_sitemaps_stylesheet_url', $sitemap_url ); … … 91 91 * @global WP_Rewrite $wp_rewrite WordPress rewrite component. 92 92 * 93 * @return string The sitemap index stylesheet url.93 * @return string The sitemap index stylesheet URL. 94 94 */ 95 95 public function get_sitemap_index_stylesheet_url() { … … 105 105 * Filters the URL for the sitemap index stylesheet. 106 106 * 107 * If a fals y value is returned, no stylesheet will be used and107 * If a falsey value is returned, no stylesheet will be used and 108 108 * the "raw" XML of the sitemap index will be displayed. 109 109 * 110 110 * @since 5.5.0 111 111 * 112 * @param string $sitemap_url Full URL for the sitemaps index xslfile.112 * @param string $sitemap_url Full URL for the sitemaps index XSL file. 113 113 */ 114 114 return apply_filters( 'wp_sitemaps_stylesheet_index_url', $sitemap_url );
Note: See TracChangeset
for help on using the changeset viewer.