WP_Sitemaps_Stylesheet::render_stylesheet( string $type )
Renders the XSL stylesheet depending on whether it’s the sitemap index or not.
Parameters
- $type
-
(string) (Required) Stylesheet type. Either 'sitemap' or 'index'.
Source
File: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php
public function render_stylesheet( $type ) { header( 'Content-type: application/xml; charset=UTF-8' ); if ( 'sitemap' === $type ) { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- All content escaped below. echo $this->get_sitemap_stylesheet(); } if ( 'index' === $type ) { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- All content escaped below. echo $this->get_sitemap_index_stylesheet(); } exit; }
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_sitemaps_stylesheet/render_stylesheet