get_theme_roots()
get_theme_roots() 检索主题根。Retrieve theme roots. 目录锚点:#返回#…
get_theme_roots()
检索主题根。
Retrieve theme roots.
目录锚点:#返回#源码#笔记
返回(Return)
(array|string)由模板/样式表键控的主题根数组,如果所有主题都有相同的根,则为单个主题根。
源码(Source)
/** * Retrieve theme roots. * * @since 2.9.0 * * @global array $wp_theme_directories * * @return array|string An array of theme roots keyed by template/stylesheet or a single theme root if all themes have the same root. */ function get_theme_roots() { global $wp_theme_directories; if ( count($wp_theme_directories) <= 1="" )="" return="" '/themes';="" $theme_roots="get_site_transient(" 'theme_roots'="" );="" if="" (="" false="==" $theme_roots="" )="" {="" search_theme_directories(="" true="" );="" regenerate="" the="" transient.="" $theme_roots="get_site_transient(" 'theme_roots'="" );="" }="" return="" $theme_roots;="" }="">
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.9.0 | wp-includes/theme.php:372 | 1 function | 2 |
笔记(Notes)
基本示例
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!