WordPress函数get_stylesheet()

描述:

检索当前样式表单的名称。

管理者设置的前端主题名称。

出于多方面考虑,在大多数情况下模板名称与样式表单名称一致。

用法:

<?php get_stylesheet(); ?>

参数:

None.

源文件:

/**
 * Retrieve name of the current stylesheet.
 *
 * The theme name that the administrator has currently set the front end theme
 * as.
 *
 * For all intents and purposes, the template name and the stylesheet name are
 * going to be the same for most cases.
 *
 * @since 1.5.0
 *
 * @return string Stylesheet name.
 */
function get_stylesheet() {
	/**
	 * Filter the name of current stylesheet.
	 *
	 * @since 1.5.0
	 *
	 * @param string $stylesheet Name of the current stylesheet.
	 */
	return apply_filters( 'stylesheet', get_option( 'stylesheet' ) );
}