locale_stylesheet()WP 2.1.0

Displays localized stylesheet link element.

No Hooks.

Return

null. Nothing (null).

Usage

locale_stylesheet();

Changelog

Since 2.1.0 Introduced.

locale_stylesheet() code WP 6.4.3

function locale_stylesheet() {
	$stylesheet = get_locale_stylesheet_uri();
	if ( empty( $stylesheet ) ) {
		return;
	}

	$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"';

	printf(
		'<link rel="stylesheet" href="%s"%s media="screen" />',
		$stylesheet,
		$type_attr
	);
}