wpseo_stylesheet_url хук-фильтрYoast 1.0

Filter the stylesheet URL for the XML sitemap.

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

add_filter( 'wpseo_stylesheet_url', 'wp_kama_wpseo_stylesheet_url_filter' );

/**
 * Function for `wpseo_stylesheet_url` filter-hook.
 * 
 * @param string $stylesheet Stylesheet URL.
 *
 * @return string
 */
function wp_kama_wpseo_stylesheet_url_filter( $stylesheet ){

	// filter...
	return $stylesheet;
}
$stylesheet(строка)
Stylesheet URL.

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

WPSEO_Sitemaps_Renderer::get_output()
wpseo_stylesheet_url
yoast/inc/sitemaps/class-sitemaps-renderer.php 154
$output .= apply_filters( 'wpseo_stylesheet_url', $this->stylesheet ) . "\n";

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

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