wp_sitemaps_stylesheet_content хук-фильтрWP 5.5.0

Filters the content of the sitemap stylesheet.

Использование

add_filter( 'wp_sitemaps_stylesheet_content', 'wp_kama_sitemaps_stylesheet_content_filter' );

/**
 * Function for `wp_sitemaps_stylesheet_content` filter-hook.
 * 
 * @param string $xsl_content Full content for the XML stylesheet.
 *
 * @return string
 */
function wp_kama_sitemaps_stylesheet_content_filter( $xsl_content ){

	// filter...
	return $xsl_content;
}
$xsl_content(строка)
Full content for the XML stylesheet.

Список изменений

С версии 5.5.0 Введена.

Где вызывается хук

WP_Sitemaps_Stylesheet::get_sitemap_stylesheet()
wp_sitemaps_stylesheet_content
wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php 151
return apply_filters( 'wp_sitemaps_stylesheet_content', $xsl_content );

Где используется хук в WordPress

Использование не найдено.