显示本地化的样式表链接元素。
原型
locale_stylesheet()
源文件
路径:wp-includes/theme.php
<?php
...
function locale_stylesheet() {
$stylesheet = get_locale_stylesheet_uri();
if ( empty($stylesheet) )
return;
echo '<link rel="stylesheet" href="' . $stylesheet . '" type="text/css" media="screen" />';
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/locale_stylesheet/