返回介绍

get_raw_theme_root()

发布于 2017-09-11 00:04:12 字数 2601 浏览 1015 评论 0 收藏 0

get_raw_theme_root( string $stylesheet_or_template,  bool $skip_cache = false )

Get the raw theme root relative to the content directory with no filters applied.


description


参数

$stylesheet_or_template

(string) (Required) The stylesheet or template name of the theme

$skip_cache

(bool) (Optional) Whether to skip the cache. Defaults to false, meaning the cache is used.

Default value: false


返回值

(string) Theme root


源代码

File: wp-includes/theme.php

function get_raw_theme_root( $stylesheet_or_template, $skip_cache = false ) {
	global $wp_theme_directories;

	if ( count($wp_theme_directories) <= 1 )
		return '/themes';

	$theme_root = false;

	// If requesting the root for the current theme, consult options to avoid calling get_theme_roots()
	if ( ! $skip_cache ) {
		if ( get_option('stylesheet') == $stylesheet_or_template )
			$theme_root = get_option('stylesheet_root');
		elseif ( get_option('template') == $stylesheet_or_template )
			$theme_root = get_option('template_root');
	}

	if ( empty($theme_root) ) {
		$theme_roots = get_theme_roots();
		if ( !empty($theme_roots[$stylesheet_or_template]) )
			$theme_root = $theme_roots[$stylesheet_or_template];
	}

	return $theme_root;
}

更新日志

Versiondescription
3.1.0Introduced.

相关函数

Uses

  • wp-includes/theme.php: get_theme_roots()
  • wp-includes/option.php: get_option()

Used By

  • wp-includes/class-wp-customize-manager.php: WP_Customize_Manager::get_template_root()
  • wp-includes/class-wp-customize-manager.php: WP_Customize_Manager::get_stylesheet_root()
  • wp-includes/theme.php: get_theme_root()
  • wp-includes/theme.php: get_theme_root_uri()
  • wp-includes/theme.php: switch_theme()
  • wp-includes/theme.php: wp_get_themes()
  • wp-includes/theme.php: wp_get_theme()
  • Show 2 more used by Hide more used by

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文