web-dev-qa-db-ja.com

カスタムテーマフォルダ

誰もが私がWP_PLUGIN_DIRで定義できるテーマのためのWP_PLUGIN_URLwp-config.phpと同等のものを知っていますか、それとも、私はmuプラグインを作成して、新しいテーマディレクトリを登録することに行き詰まりますか?

1

デフォルトのテーマディレクトリは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で遊んでどこかに行くかもしれませんか?

3
birgire