CODEX の wp-config.php の編集 にもあるように、WordPress アドレス (URL) とサイトアドレス (URL)を環境変数を用いて、動的に定義すると複数のドメインでアクセスできるようになります。
ただ、この方法は、マルチサイトでは機能しません。
では、どうするかというと、マルチサイト起動時にサイトとブログを判別する部分をカスタマイズします。
サイトとブログの判別は、wp-includes/ms-settings.php にて行われていますが、ここには、
if ( !isset( $current_site ) || !isset( $current_blog ) ) {
という分岐があり、$current_site と $current_blog を事前に設定しておけば、WordPress デフォルトの判定ロジックを回避することができます。
この条件分岐の直前に
if ( defined( 'SUNRISE' ) )
include_once( WP_CONTENT_DIR . '/sunrise.php' );
と、なんともご都合的な分岐があるので、
wp-config.php に
define( 'SUNRISE', true );
define( 'MY_CURRENT_SITE', 'my.example.com' );
を定義しておき、sunrise.php では、
if ( ! defined( 'MY_CURRENT_SITE' ) ) { return; }
$current_site = new stdClass();
$current_site->id = SITE_ID_CURRENT_SITE;
$current_site->path = PATH_CURRENT_SITE;
$current_site->blog_id = BLOG_ID_CURRENT_SITE;
$current_site->domain = MY_CURRENT_SITE;
$current_site->cookie_domain = MY_CURRENT_SITE;
wp_load_core_site_options( $current_site->id );
$current_site->site_name = wp_cache_get( SITE_ID_CURRENT_SITE .':site_name', 'site-options' );
$_current_blog = new stdClass();
$path = preg_replace( '|([a-z0-9-]+.php.*)|', '', $_SERVER['REQUEST_URI'] );
$path = str_replace ( '/wp-admin/', '/', $path );
$path = preg_replace( '|(/[a-z0-9-]+?/).*|', '$1', $path );
$blogname = htmlspecialchars( substr( $_SERVER[ 'REQUEST_URI' ], strlen( $path ) ) );
if ( false !== strpos( $blogname, '/' ) )
$blogname = substr( $blogname, 0, strpos( $blogname, '/' ) );
if ( false !== strpos( $blogname, '?' ) )
$blogname = substr( $blogname, 0, strpos( $blogname, '?' ) );
$reserved_blognames = array( 'page', 'comments', 'blog', 'wp-admin', 'wp-includes', 'wp-content', 'files', 'feed' );
if ( $blogname != '' && ! in_array( $blogname, $reserved_blognames ) && ! is_file( $blogname ) )
$path .= $blogname . '/';
$current_blog = wp_cache_get( 'current_blog_' . DOMAIN_CURRENT_SITE . $path, 'site-options' );
if ( ! $current_blog ) {
$current_blog = get_blog_details( array( 'domain' => DOMAIN_CURRENT_SITE, 'path' => $path ), false );
if ( $current_blog )
wp_cache_set( 'current_blog_' . DOMAIN_CURRENT_SITE . $path, $_current_blog, 'site-options' );
}
unset($reserved_blognames);
$current_blog->domain = MY_CURRENT_SITE;
$blog_id = $current_blog->blog_id;
return;
といった感じで、$current_site と $current_blog を設定。
それと、WordPress アドレス (URL) とサイトアドレス (URL) のドメインを置換するため
add_filter( 'option_siteurl', 'my_filter_siteurl', 10 );
add_filter( 'option_home', 'my_filter_siteurl', 10 );
function my_filter_siteurl( $option ) {
if ( is_multisite() && defined( 'MY_CURRENT_SITE' ) ) {
$option = str_replace( DOMAIN_CURRENT_SITE, MY_CURRENT_SITE, $option );
}
return $option;
}
をプラグインとして稼働させると、MY_CURRENT_SITE で定義したドメインで表示できます。
※ まだ、検証不足なところもあり、全ての機能が問題なく稼働するかわかりません。
※ 機能するのは、ディレクトリ型のマルチサイトです。マルチドメイン型では、sunrise.php での、$current_site と $current_blog の判別ロジックを変える必要があります。