WP_Sitemaps_Stylesheet::render_stylesheet() WordPress Method
The WP_Sitemaps_Stylesheet::render_stylesheet() method is used to render a stylesheet for a sitemap. This stylesheet can be used to style the sitemap XML output.
WP_Sitemaps_Stylesheet::render_stylesheet( string $type ) #
Renders the XSL stylesheet depending on whether it’s the sitemap index or not.
Contents
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; }
Expand full source codeCollapse full source codeView on TracView on GitHub