wp_sitemaps_stylesheet_index_url filter-hook . WP 5.5.0
Filters the URL for the sitemap index stylesheet.
If a falsey value is returned, no stylesheet will be used and the "raw" XML of the sitemap index will be displayed.
Usage
add_filter( 'wp_sitemaps_stylesheet_index_url', 'filter_function_name_8291' ); function filter_function_name_8291( $sitemap_url ){ // filter... return $sitemap_url; }
- $sitemap_url(string)
- Full URL for the sitemaps index XSL file.
Changelog
Since 5.5.0 | Introduced. |
Where the hook is called
wp_sitemaps_stylesheet_index_url
wp-includes/sitemaps/class-wp-sitemaps-renderer.php 114
return apply_filters( 'wp_sitemaps_stylesheet_index_url', $sitemap_url );