默认主题目录的注册方式如下wp-settings.php
// Register the default theme directory root
register_theme_directory( get_theme_root() );
在哪里
function get_theme_root( $stylesheet_or_template = false ) {
global $wp_theme_directories;
if ( $stylesheet_or_template && $theme_root = get_raw_theme_root( $stylesheet_or_template ) ) {
// Always prepend WP_CONTENT_DIR unless the root currently registered as a theme directory.
// This gives relative theme roots the benefit of the doubt when things go haywire.
if ( ! in_array( $theme_root, (array) $wp_theme_directories ) )
$theme_root = WP_CONTENT_DIR . $theme_root;
} else {
$theme_root = WP_CONTENT_DIR . \'/themes\';
}
return apply_filters( \'theme_root\', $theme_root );
}
功能
get_theme_root()
和
get_raw_theme_root()
似乎用于其他与主题相关的功能。
我看不到这里使用了任何与主题相关的预定义常量,因此我认为您需要一个插件;-)
也许和全球$wp_theme_directories
也许能帮你找到什么地方?