誰もが私がWP_PLUGIN_DIR
で定義できるテーマのためのWP_PLUGIN_URL
とwp-config.php
と同等のものを知っていますか、それとも、私はmuプラグインを作成して、新しいテーマディレクトリを登録することに行き詰まりますか?
デフォルトのテーマディレクトリは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
で遊んでどこかに行くかもしれませんか?