ドメインのパーマリンクへのマッピング(マルチサイトではない)


8

(マルチサイトではなく)スタンドアロンのWPインストールでこれを実行しようとしています。私が達成しようとしているのは:

  1. ユーザーdomain.comはusermetaに保存します。(完了)
  2. ユーザーが新しいCPTを作成しますcompany。デフォルトでアクセス可能original.com/company/example-company(完了-デフォルト)
  3. domain.com/company/example-companyusermeta domainが設定されているときにも、ユーザーが作成したすべての投稿を利用できるようにする必要があります。

DNSとドメインが現在のWPインストール(無関係)を指す必要があることを理解していますが、ドメインをパーマリンクにマップする方法がわかりません。

アルゴリズムはこのようなものでなければなりません

  1. companyCPT単一ページが表示されるかどうかを確認します。
  2. 作成者がドメインを設定したかどうかを確認します。
  3. domainが設定されている場合は、パーマリンクを変更します。

回答:


4

domain.comエイリアスとして設定した場合original.com、WordPressでは機能させるために何もする必要はありません。

問題がcountraryです:DNSに2つのドメインがエイリアスされると、すべてのあなたのWordPressのURLは、ユーザー定義のドメインを介してアクセス可能になります。domain.com/any/wp/urlが、また domain2.com/any/wp/urldomain3.com/any/wp/urlのように...

だから、あなたがしなければならないことは、

  1. URLがユーザー定義ドメインの1つであるかどうかを確認してください
  2. その場合、要求されたページが単一のCPTであり、その作成者がドメインを保存したものであるかどうかを確認します
  3. そうでない場合は、リクエストを元のドメインにリダイレクトしますù

元のドメインを定数に保存するとします。 wp-config.php

define('ORIGINAL_DOMAIN', 'original.com');

これで、上記のワークフローを簡単に実装できます。

add_action('template_redirect', 'check_request_domain', 1);

function check_request_domain() {
  $domain = filter_input(INPUT_SERVER, 'HTTP_HOST', FILTER_SANITIZE_URL);
  // strip out the 'www.' part if present
  $domain = str_replace( 'www.', '', $domain);

  // if the request is from original domain do nothing
  if ( $domain === ORIGINAL_DOMAIN ) return;

  // if it is not a singular company CPT request redirect to same request
  // but on original domain
  if ( ! is_singular('company') ) {
    redirect_to_original(); // function defined below
  }

  // if we are here the request is from an user domain and for a singular company request
  // let's check if the author of the post has user meta, assuming meta key is `'domain'`
  // and the meta value is the same of domain in current url

  $meta = get_user_meta( get_queried_object()->post_author, 'domain', TRUE ); 

  if ( $meta !== $domain ) { // meta doesn't match, redirect
     redirect_to_original(); // function defined below
  } else {
    // meta match, only assuring that WordPress will not redirect canonical url
    remove_filter('template_redirect', 'redirect_canonical');
  }
}

次に、現在のURLを使用してリクエストをリダイレクトする関数を作成しますが、元のドメインを使用します

/**
 * Redirect the request to same url, but using original domain
 */
function redirect_to_original() {
  $original = untrailingslashit( home_url() ) . add_query_arg( array() );
  wp_safe_redirect( $original, 301 );
  exit();
}

最後に行うべきことは、パーマリンクの作成をフィルタリングして、単一の企業CPT URLにユーザー定義ドメインを使用することです。

add_filter( 'post_type_link', 'custom_user_domain_plink', 999, 2 );

function custom_user_domain_plink( $post_link, $post ) {
  // we want change permalink only for company cpt posts
  if ( $post->post_type !== 'company' ) return $post_link;

  // has the user setted a custom domain? If not, do nothing
  $custom = get_user_meta( $post->post_author, 'domain', TRUE );
  if ( empty($custom) ) return $post_link;

  // let's replace the original domain, with the custom one, and return new value
  return str_replace( ORIGINAL_DOMAIN, $custom, $post_link);
}

この時点で、サーバーにDNSを設定するだけで、ユーザー定義のドメインはすべて元のドメインのエイリアスになります。

コードはテストされていないことに注意してください。


4

単純な定数でWP_SITEURL十分です。私はそれに似たものに取り組みました。

違いは、すべてのドメインが同じサーバーでホストされ、ルートディレクトリをポイントしていることです。

私が試した手順-

ホストを使用してチェック$_SERVER['HTTP_HOST']し、データベースに存在するかどうかを検証しました。
あなたのニーズを比較すると、あなたはこれを次のようにチェックできます-

global $wpdb;
$domain_user = $wpdb->get_var(
    "SELECT user_id FROM $wpdb->usermeta".
    " WHERE meta_key = 'domain'".
    " AND meta_value='". $_SERVER['HTTP_HOST'] ."'"
);
// if an user found, do further processing. 
// Exclude posts by other user using pre_get_posts may be.

次に、定義されWP_SITEURLWP_HOME

define( 'MY_SITE_DOMAIN', $_SERVER['HTTP_HOST'] );
if( !defined( 'WP_SITEURL' )):
    if( is_ssl())
        define( 'WP_SITEURL', 'https://'. MY_SITE_DOMAIN );
    else
        define( 'WP_SITEURL', 'http://'. MY_SITE_DOMAIN );
endif;

if( !defined( 'WP_HOME' ) ):
    define( 'WP_HOME', WP_SITEURL );
endif;

そのため、すべてのリンクは動的に現在のホストアドレスに変更され、すべてのワードプレスサイトのようにアクセスできました。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.