locale_stylesheet()WP 2.1.0

Displays localized stylesheet link element.

No Hooks.

Returns

null. Nothing (null).

Usage

locale_stylesheet();

Changelog

Since 2.1.0 Introduced.

locale_stylesheet() code WP 7.0

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

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