WebサイトのフロントエンドでWordPressユーザー登録フォームを表示する方法


30

ブログのフロントエンドでWordPressユーザー登録フォーム(「www.mywebsite.com/wp-register.php」ページに表示されるフォーム)を表示する方法

登録フォームをカスタマイズしました。しかし、フロントエンドページでそのフォームを呼び出す方法がわかりません。どんなサポートも本当に大きな助けになります。

前もって感謝します。:)


私が見つけた最良の解決策は、テーマMy Login pluginです。
ウィルフェル

この記事では、独自のフロントエンド登録/ログイン/復元パスワードフォームを作成する方法に関する素晴らしいチュートリアルを提供します。あなたがプラグインを探している場合は、その後、私は前にこれらを使用していたし、それらをお勧めすることができます- Ajaxのログイン/登録 - ログインしてアヤックス
Bainternet

CosmolabsのCristianが、フロントエンドのユーザープロファイル、ログイン、および登録テンプレートを作成できるソースファイルを含む素晴らしいチュートリアルを投稿しています。
フィリップ

回答:


33

このプロセスには2つのステップが含まれます。

  1. フロントエンドフォームを表示する
  2. 提出時にデータを保存する

フロントエンドを示すために思い浮かぶ3つの異なるアプローチがあります。

  • 組み込みの登録フォーム、編集スタイルなどを使用して、「フロントエンドのような」ものにします
  • WordPressページ/投稿を使用し、ショートコードを使用してフォームを表示する
  • どのページ/投稿にも接続されていないが、特定のURLによって呼び出される専用テンプレートを使用する

この回答では、後者を使用します。その理由は次のとおりです。

  • 組み込みの登録フォームを使用することをお勧めします。組み込みのフォームを使用すると、深いカスタマイズが非常に難しくなります。また、フォームフィールドをカスタマイズしたい場合は、痛みが大きくなります。
  • WordPressページをショートコードと組み合わせて使用​​することはそれほど信頼性が高くありません。また、ショアコードは機能だけではなく、フォーマットなどに使用すべきではないと思います。

1:URLを作成する

WordPressサイトのデフォルトの登録フォームは、多くの場合、スパマーのターゲットであることを私たちは知っています。カスタムURLを使用すると、この問題を解決できます。さらに、変数 url も使用します。つまり、登録フォームのurlは常に同じである必要はありません。これにより、スパマーの生活が難しくなります。トリックは、URLでnonceを使用して行われます。

/**
* Generate dynamic registration url
*/
function custom_registration_url() {
  $nonce = urlencode( wp_create_nonce( 'registration_url' ) );
  return home_url( $nonce );
}

/**
* Generate dynamic registration link
*/
function custom_registration_link() {
  $format = '<a href="%s">%s</a>';
  printf(
    $format,
    custom_registration_url(), __( 'Register', 'custom_reg_form' )
  );
}

この関数を使用すると、動的であっても登録フォームへのリンクをテンプレートに簡単に表示できます。

2:URLを認識する、最初のスタブ Custom_Reg\Custom_Regクラスの

ここで、URLを認識する必要があります。目的のために、クラスの作成を開始します。これは回答の後半で終了します。

<?php
// don't save, just a stub
namespace Custom_Reg;

class Custom_Reg {

  function checkUrl() {
    $url_part = $this->getUrl();
    $nonce = urlencode( wp_create_nonce( 'registration_url' ) );
    if ( ( $url_part === $nonce ) ) {
      // do nothing if registration is not allowed or user logged
      if ( is_user_logged_in() || ! get_option('users_can_register') ) {
        wp_safe_redirect( home_url() );
        exit();
      }
      return TRUE;
    }
  }

  protected function getUrl() {
    $home_path = trim( parse_url( home_url(), PHP_URL_PATH ), '/' );
    $relative = trim(str_replace($home_path, '', esc_url(add_query_arg(array()))), '/');
    $parts = explode( '/', $relative );
    if ( ! empty( $parts ) && ! isset( $parts[1] ) ) {
      return $parts[0];
    }
  }

}

関数は、URLの最初の部分を見て home_url()、nonceと一致する場合はTRUEを返します。この関数は、リクエストを確認し、フォームを表示するために必要なアクションを実行するために使用されます。

3:Custom_Reg\Formクラス

フォームマークアップを生成するクラスを作成します。また、フォームの表示に使用する必要があるテンプレートファイルパスをプロパティに格納するためにも使用します。

<?php 
// file: Form.php
namespace Custom_Reg;

class Form {

  protected $fields;

  protected $verb = 'POST';

  protected $template;

  protected $form;

  public function __construct() {
    $this->fields = new \ArrayIterator();
  }

  public function create() {
    do_action( 'custom_reg_form_create', $this );
    $form = $this->open();
    $it =  $this->getFields();
    $it->rewind();
    while( $it->valid() ) {
      $field = $it->current();
      if ( ! $field instanceof FieldInterface ) {
        throw new \DomainException( "Invalid field" );
      }
      $form .= $field->create() . PHP_EOL;
      $it->next();
    }
    do_action( 'custom_reg_form_after_fields', $this );
    $form .= $this->close();
    $this->form = $form;
    add_action( 'custom_registration_form', array( $this, 'output' ), 0 );
  }

  public function output() {
    unset( $GLOBALS['wp_filters']['custom_registration_form'] );
    if ( ! empty( $this->form ) ) {
      echo $this->form;
    }
  }

  public function getTemplate() {
    return $this->template;
  }

  public function setTemplate( $template ) {
    if ( ! is_string( $template ) ) {
      throw new \InvalidArgumentException( "Invalid template" );
    }
    $this->template = $template;
  }

  public function addField( FieldInterface $field ) {
    $hook = 'custom_reg_form_create';
    if ( did_action( $hook ) && current_filter() !== $hook ) {
      throw new \BadMethodCallException( "Add fields before {$hook} is fired" );
    }
    $this->getFields()->append( $field );
  }

  public function getFields() {
    return $this->fields;
  }

  public function getVerb() {
    return $this->verb;
  }

  public function setVerb( $verb ) {
    if ( ! is_string( $verb) ) {
     throw new \InvalidArgumentException( "Invalid verb" );
    }
    $verb = strtoupper($verb);
    if ( in_array($verb, array( 'GET', 'POST' ) ) ) $this->verb = $verb;
  }

  protected function open() {
    $out = sprintf( '<form id="custom_reg_form" method="%s">', $this->verb ) . PHP_EOL;
    $nonce = '<input type="hidden" name="_n" value="%s" />';
    $out .= sprintf( $nonce,  wp_create_nonce( 'custom_reg_form_nonce' ) ) . PHP_EOL;
    $identity = '<input type="hidden" name="custom_reg_form" value="%s" />';
    $out .= sprintf( $identity,  __CLASS__ ) . PHP_EOL;
    return $out;
  }

  protected function close() {
    $submit =  __('Register', 'custom_reg_form');
    $out = sprintf( '<input type="submit" value="%s" />', $submit );
    $out .= '</form>';
    return $out;
  }

}

クラスはcreate、それぞれのメソッドを呼び出して追加されたすべてのフィールドをループするフォームマークアップを生成します。各フィールドはのインスタンスでなければなりませんCustom_Reg\FieldInterface。ノンス検証のために、追加の非表示フィールドが追加されます。フォームメソッドはデフォルトで「POST」ですが、setVerbメソッドを使用して「GET」に設定できます。作成されたマークアップは$formoutput()メソッドによってエコーされるオブジェクトプロパティ内に保存され、フックに'custom_registration_form'フックされます。フォームテンプレートで、単に呼び出すdo_action( 'custom_registration_form' )がフォームを出力します。

4:デフォルトのテンプレート

フォームのテンプレートは簡単にオーバーライドできますが、フォールバックとして基本的なテンプレートが必要です。ここでは、非常に大まかなテンプレートを作成します。実際のテンプレートよりも概念実証です。

<?php
// file: default_form_template.php
get_header();

global $custom_reg_form_done, $custom_reg_form_error;

if ( isset( $custom_reg_form_done ) && $custom_reg_form_done ) {
  echo '<p class="success">';
  _e(
    'Thank you, your registration was submitted, check your email.',
    'custom_reg_form'
  );
  echo '</p>';
} else {
  if ( $custom_reg_form_error ) {
    echo '<p class="error">' . $custom_reg_form_error  . '</p>';
  }
  do_action( 'custom_registration_form' );
}

get_footer();

5:ザ Custom_Reg\FieldInterfaceインターフェース

すべてのフィールドは、次のインターフェースを実装するオブジェクトでなければなりません

<?php 
// file: FieldInterface.php
namespace Custom_Reg;

interface FieldInterface {

  /**
   * Return the field id, used to name the request value and for the 'name' param of
   * html input field
   */
  public function getId();

  /**
   * Return the filter constant that must be used with
   * filter_input so get the value from request
   */
  public function getFilter();

  /**
   * Return true if the used value passed as argument should be accepted, false if not
   */
  public function isValid( $value = NULL );

  /**
   * Return true if field is required, false if not
   */
  public function isRequired();

  /**
   * Return the field input markup. The 'name' param must be output 
   * according to getId()
   */
  public function create( $value = '');
}

コメントは、このインターフェースを実装するクラスが何をすべきかを説明すると思う。

6:いくつかのフィールドを追加する

ここでいくつかのフィールドが必要です。フィールドクラスを定義する「fields.php」というファイルを作成できます。

<?php
// file: fields.php
namespace Custom_Reg;

abstract class BaseField implements FieldInterface {

  protected function getType() {
    return isset( $this->type ) ? $this->type : 'text';
  }

  protected function getClass() {
    $type = $this->getType();
    if ( ! empty($type) ) return "{$type}-field";
  }

  public function getFilter() {
    return FILTER_SANITIZE_STRING;
  }

  public function isRequired() {
    return isset( $this->required ) ? $this->required : FALSE;
  }

  public function isValid( $value = NULL ) {
    if ( $this->isRequired() ) {
      return $value != '';
    }
    return TRUE;
  }

  public function create( $value = '' ) {
    $label = '<p><label>' . $this->getLabel() . '</label>';
    $format = '<input type="%s" name="%s" value="%s" class="%s"%s /></p>';
    $required = $this->isRequired() ? ' required' : '';
    return $label . sprintf(
      $format,
      $this->getType(), $this->getId(), $value, $this->getClass(), $required
    );
  }

  abstract function getLabel();
}


class FullName extends BaseField {

  protected $required = TRUE;

  public function getID() {
    return 'fullname';
  }

  public function getLabel() {
    return __( 'Full Name', 'custom_reg_form' );
  }

}

class Login extends BaseField {

  protected $required = TRUE;

  public function getID() {
    return 'login';
  }

  public function getLabel() {
    return __( 'Username', 'custom_reg_form' );
  }
}

class Email extends BaseField {

  protected $type = 'email';

  public function getID() {
    return 'email';
  }

  public function getLabel() {
    return __( 'Email', 'custom_reg_form' );
  }

  public function isValid( $value = NULL ) {
    return ! empty( $value ) && filter_var( $value, FILTER_VALIDATE_EMAIL );
  }
}

class Country extends BaseField {

  protected $required = FALSE;

  public function getID() {
    return 'country';
  }

  public function getLabel() {
    return __( 'Country', 'custom_reg_form' );
  }
}

基本クラスを使用してデフォルトのインターフェイス実装を定義しましたが、インターフェイスを直接実装するか、基本クラスを拡張していくつかのメソッドをオーバーライドする、非常にカスタマイズされたフィールドを追加できます。

この時点で、フォームを表示するすべてのものが揃ったので、フィールドを検証して保存するものが必要になりました。

7:Custom_Reg\Saverクラス

<?php
// file: Saver.php
namespace Custom_Reg;

class Saver {

  protected $fields;

  protected $user = array( 'user_login' => NULL, 'user_email' => NULL );

  protected $meta = array();

  protected $error;

  public function setFields( \ArrayIterator $fields ) {
    $this->fields = $fields;
  }

  /**
  * validate all the fields
  */
  public function validate() {
    // if registration is not allowed return false
    if ( ! get_option('users_can_register') ) return FALSE;
    // if no fields are setted return FALSE
    if ( ! $this->getFields() instanceof \ArrayIterator ) return FALSE;
    // first check nonce
    $nonce = $this->getValue( '_n' );
    if ( $nonce !== wp_create_nonce( 'custom_reg_form_nonce' ) ) return FALSE;
    // then check all fields
    $it =  $this->getFields();
    while( $it->valid() ) {
      $field = $it->current();
      $key = $field->getID();
      if ( ! $field instanceof FieldInterface ) {
        throw new \DomainException( "Invalid field" );
      }
      $value = $this->getValue( $key, $field->getFilter() );
      if ( $field->isRequired() && empty($value) ) {
        $this->error = sprintf( __('%s is required', 'custom_reg_form' ), $key );
        return FALSE;
      }
      if ( ! $field->isValid( $value ) ) {
        $this->error = sprintf( __('%s is not valid', 'custom_reg_form' ), $key );
        return FALSE;
      }
      if ( in_array( "user_{$key}", array_keys($this->user) ) ) {
        $this->user["user_{$key}"] = $value;
      } else {
        $this->meta[$key] = $value;
      }
      $it->next();
    }
    return TRUE;
  }

  /**
  * Save the user using core register_new_user that handle username and email check
  * and also sending email to new user
  * in addition save all other custom data in user meta
  *
  * @see register_new_user()
  */
  public function save() {
    // if registration is not allowed return false
    if ( ! get_option('users_can_register') ) return FALSE;
    // check mandatory fields
    if ( ! isset($this->user['user_login']) || ! isset($this->user['user_email']) ) {
      return false;
    }
    $user = register_new_user( $this->user['user_login'], $this->user['user_email'] );
    if ( is_numeric($user) ) {
      if ( ! update_user_meta( $user, 'custom_data', $this->meta ) ) {
        wp_delete_user($user);
        return FALSE;
      }
      return TRUE;
    } elseif ( is_wp_error( $user ) ) {
      $this->error = $user->get_error_message();
    }
    return FALSE;
  }

  public function getValue( $var, $filter = FILTER_SANITIZE_STRING ) {
    if ( ! is_string($var) ) {
      throw new \InvalidArgumentException( "Invalid value" );
    }
    $method = strtoupper( filter_input( INPUT_SERVER, 'REQUEST_METHOD' ) );
    $type = $method === 'GET' ? INPUT_GET : INPUT_POST;
    $val = filter_input( $type, $var, $filter );
    return $val;
  }

  public function getFields() {
    return $this->fields;
  }

  public function getErrorMessage() {
    return $this->error;
  }

}

そのクラスには、2つの主要なメソッドがあります。1つvalidateはフィールドをループし、それらを検証して適切なデータを配列にsave保存します。

8:定義されたクラスを使用する:仕上げCustom_Regクラスを

これでCustom_Regクラスに再び取り組み、定義されたオブジェクトを「接着」して動作させるメソッドを追加できます

<?php 
// file Custom_Reg.php
namespace Custom_Reg;

class Custom_Reg {

  protected $form;

  protected $saver;

  function __construct( Form $form, Saver $saver ) {
    $this->form = $form;
    $this->saver = $saver;
  }

  /**
   * Check if the url to recognize is the one for the registration form page
   */
  function checkUrl() {
    $url_part = $this->getUrl();
    $nonce = urlencode( wp_create_nonce( 'registration_url' ) );
    if ( ( $url_part === $nonce ) ) {
      // do nothing if registration is not allowed or user logged
      if ( is_user_logged_in() || ! get_option('users_can_register') ) {
        wp_safe_redirect( home_url() );
        exit();
      }
      return TRUE;
    }
  }

  /**
   * Init the form, if submitted validate and save, if not just display it
   */
  function init() {
    if ( $this->checkUrl() !== TRUE ) return;
    do_action( 'custom_reg_form_init', $this->form );
    if ( $this->isSubmitted() ) {
      $this->save();
    }
    // don't need to create form if already saved
    if ( ! isset( $custom_reg_form_done ) || ! $custom_reg_form_done ) {
      $this->form->create();
    }
    load_template( $this->getTemplate() );
    exit();
  }

  protected function save() {
    global $custom_reg_form_error;
    $this->saver->setFields( $this->form->getFields() );
    if ( $this->saver->validate() === TRUE ) { // validate?
      if ( $this->saver->save() ) { // saved?
        global $custom_reg_form_done;
        $custom_reg_form_done = TRUE;
      } else { // saving error
        $err =  $this->saver->getErrorMessage(); 
        $custom_reg_form_error = $err ? : __( 'Error on save.', 'custom_reg_form' );
      }
    } else { // validation error
       $custom_reg_form_error = $this->saver->getErrorMessage();
    }
  }

  protected function isSubmitted() {
    $type = $this->form->getVerb() === 'GET' ? INPUT_GET : INPUT_POST;
    $sub = filter_input( $type, 'custom_reg_form', FILTER_SANITIZE_STRING );
    return ( ! empty( $sub ) && $sub === get_class( $this->form ) );
  }

  protected function getTemplate() {
    $base = $this->form->getTemplate() ? : FALSE;
    $template = FALSE;
    $default = dirname( __FILE__ ) . '/default_form_template.php';
    if ( ! empty( $base ) ) {
      $template = locate_template( $base );
    }
    return $template ? : $default;
  }

   protected function getUrl() {
    $home_path = trim( parse_url( home_url(), PHP_URL_PATH ), '/' );
    $relative = trim( str_replace( $home_path, '', add_query_arg( array() ) ), '/' );
    $parts = explode( '/', $relative );
    if ( ! empty( $parts ) && ! isset( $parts[1] ) ) {
      return $parts[0];
    }
  }

}

クラスのコンストラクタは、Formとのいずれかのインスタンスを受け入れますSaver

init()メソッド(を使用checkUrl())の後home_url()にURLの最初の部分を見て、それが正しいナンスと一致する場合、フォームが既に送信されているかどうかを確認し、そうであればSaverオブジェクトを使用して、ユーザーデータを検証して保存し、そうでない場合はフォームを印刷します。

init()メソッドは'custom_reg_form_init'、フォームインスタンスを引数として渡すアクションフックも起動します。このフックは、フィールドの追加、カスタムテンプレートのセットアップ、およびフォームメソッドのカスタマイズに使用する必要があります。

9:物事をまとめる

次に、メインプラグインファイルを記述する必要があります。

  • すべてのファイルが必要です
  • テキストドメインをロードする
  • インスタンス化Custom_Regクラスと呼び出しを使用してプロセス全体を起動するinit()し、適度に早いフックを使用してメソッド
  • 'custom_reg_form_init'を使用して、フィールドをフォームクラスに追加します

そう:

<?php 
/**
 * Plugin Name: Custom Registration Form
 * Description: Just a rough plugin example to answer a WPSE question
 * Plugin URI: https://wordpress.stackexchange.com/questions/10309/
 * Author: G. M.
 * Author URI: https://wordpress.stackexchange.com/users/35541/g-m
 *
 */

if ( is_admin() ) return; // this plugin is all about frontend

load_plugin_textdomain(
  'custom_reg_form',
  FALSE,
  plugin_dir_path( __FILE__ ) . 'langs'
); 

require_once plugin_dir_path( __FILE__ ) . 'FieldInterface.php';
require_once plugin_dir_path( __FILE__ ) . 'fields.php';
require_once plugin_dir_path( __FILE__ ) . 'Form.php';
require_once plugin_dir_path( __FILE__ ) . 'Saver.php';
require_once plugin_dir_path( __FILE__ ) . 'CustomReg.php';

/**
* Generate dynamic registration url
*/
function custom_registration_url() {
  $nonce = urlencode( wp_create_nonce( 'registration_url' ) );
  return home_url( $nonce );
}

/**
* Generate dynamic registration link
*/
function custom_registration_link() {
  $format = '<a href="%s">%s</a>';
  printf(
    $format,
    custom_registration_url(), __( 'Register', 'custom_reg_form' )
  );
}

/**
* Setup, show and save the form
*/
add_action( 'wp_loaded', function() {
  try {
    $form = new Custom_Reg\Form;
    $saver = new Custom_Reg\Saver;
    $custom_reg = new Custom_Reg\Custom_Reg( $form, $saver );
    $custom_reg->init();
  } catch ( Exception $e ) {
    if ( defined('WP_DEBUG') && WP_DEBUG ) {
      $msg = 'Exception on  ' . __FUNCTION__;
      $msg .= ', Type: ' . get_class( $e ) . ', Message: ';
      $msg .= $e->getMessage() ? : 'Unknown error';
      error_log( $msg );
    }
    wp_safe_redirect( home_url() );
  }
}, 0 );

/**
* Add fields to form
*/
add_action( 'custom_reg_form_init', function( $form ) {
  $classes = array(
    'Custom_Reg\FullName',
    'Custom_Reg\Login',
    'Custom_Reg\Email',
    'Custom_Reg\Country'
  );
  foreach ( $classes as $class ) {
    $form->addField( new $class );
  }
}, 1 );

10:タスクがありません

これで、everithingはかなり完了です。テンプレートをカスタマイズするだけで、おそらくテーマにカスタムテンプレートファイルを追加します。

この方法でカスタム登録ページにのみ特定のスタイルとスクリプトを追加できます

add_action( 'wp_enqueue_scripts', function() {
  // if not on custom registration form do nothing
  if ( did_action('custom_reg_form_init') ) {
    wp_enqueue_style( ... );
    wp_enqueue_script( ... );
  }
});

このメソッドを使用して、クライアント側の検証を処理するjsスクリプトをキューに入れることができます(例:1)。そのスクリプトを機能させるために必要なマークアップは、Custom_Reg\BaseFieldクラスの編集を簡単に処理できます。

登録メールをカスタマイズする場合は、標準的な方法を使用し、メタに保存されたカスタムデータを使用して、メールでそれらを使用できます。

おそらく実装したい最後のタスクは、デフォルトの登録フォームへのリクエストを防ぐことです。

add_action( 'login_form_register', function() { exit(); } );

すべてのファイルは、ここで Gistにあります


1
うわー、これは登録機能の完全な再設計です!組み込みの登録プロセスを完全にオーバーライドする場合は、おそらくこれが適切なソリューションです。組み込みの登録フォームを使用しないことは、パスワードの紛失フォームなどの他のコア機能を失うため、良いアイデアではないと思います。そして、新しく登録したユーザーは、サインインするために従来のバックエンドログインフォームを表示する必要があります。
ファビアンクアトラヴォー

1
@FabienQuatravauxがパスワードを失い、ログインフォームを通常どおり使用できます(バックエンド)。はい、失われたパスワードとログインフォームが処理されないため、コードが不完全であるが、OPの質問には、のみ登録フォームについてだったと答えはすでに長すぎる...他の機能を追加しました
gmazzap

13

TLDR; 次のフォームをテーマに追加します。属性nameid属性は重要です。

<form action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" method="post">
    <input type="text" name="user_login" value="Username" id="user_login" class="input" />
    <input type="text" name="user_email" value="E-Mail" id="user_email" class="input"  />
    <?php do_action('register_form'); ?>
    <input type="submit" value="Register" id="register" />
</form>

素晴らしいWordpressの登録フォームをゼロから作成することに関するTutsplusの優れた記事を見つけました。これは、フォームのスタイリングにかなりの時間を費やしますが、必要なワードプレスコードに関する次の非常に簡単なセクションがあります。

ステップ4. WordPress

ここには空想はありません。wp-login.phpファイル内に隠された2つのWordPressスニペットのみが必要です。

最初のスニペット:

<?php echo site_url('wp-login.php?action=register', 'login_post') ?>  

そして:

<?php do_action('register_form'); ?>

編集:上記のコードスニペットを配置する場所を説明するために、記事の最後の余分なビットを追加しました。これは、任意のページテンプレートまたはサイドバーに移動したり、ショートコードを作成したりするための単なるフォームです。重要なセクションは、form上記のスニペットと重要な必須フィールドを含むセクションです。

最終的なコードは次のようになります。

<div style="display:none"> <!-- Registration -->
        <div id="register-form">
        <div class="title">
            <h1>Register your Account</h1>
            <span>Sign Up with us and Enjoy!</span>
        </div>
            <form action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" method="post">
            <input type="text" name="user_login" value="Username" id="user_login" class="input" />
            <input type="text" name="user_email" value="E-Mail" id="user_email" class="input"  />
                <?php do_action('register_form'); ?>
                <input type="submit" value="Register" id="register" />
            <hr />
            <p class="statement">A password will be e-mailed to you.</p>


            </form>
        </div>
</div><!-- /Registration -->

テキスト入力の属性として、および属性として持つことが非常に重要であり、必要であることに注意してください。同じことが電子メール入力にも当てはまります。そうしないと、機能しません。user_loginnameid

これで完了です!


素晴らしい解決策!シンプルで効率的。しかし、これらのスニペットはどこに配置しますか?サイドバーで?このヒントは、ajax登録フォームでのみ機能するように縫い合わせています。
ファビアンクアトラヴォー14年

1
@FabienQuatravauxに感謝します。記事の最後のセクションを含めるように回答を更新しました。AJAXフォームは必要ないはずです-そのわずかPOSTフォームと提出wp-login.php?action=registerページ
icc97

6

この記事は、独自のフロントエンド登録/ログイン/復元パスワードフォームを作成する方法に関する素晴らしいチュートリアルを提供します。

または、プラグインを探している場合は、これらを以前に使用したことがあり、推奨することができます:


4

少し前に、フロントエンド側にカスタマイズされた登録フォームを表示するWebサイトを作成しました。このウェブサイトはもう公開されていませんが、ここにいくつかのスクリーンショットがあります。 ログインフォーム 登録用紙 パスワード紛失フォーム

私が従った手順は次のとおりです。

1) [設定]> [全般]> [メンバーシップ]オプションを使用して、すべての訪問者が新しいアカウントをリクエストできるようにします。登録ページがURL /wp-login.php?action=registerに表示されます

2)登録フォームをカスタマイズして、サイトのフロントエンドのようにします。これはよりトリッキーであり、使用しているテーマによって異なります。

次に、23の例を示します。

// include theme scripts and styles on the login/registration page
add_action('login_enqueue_scripts', 'twentythirteen_scripts_styles');

// remove admin style on the login/registration page
add_filter( 'style_loader_tag', 'user16975_remove_admin_css', 10, 2);
function user16975_remove_admin_css($tag, $handle){
    if ( did_action('login_init')
    && ($handle == 'wp-admin' || $handle == 'buttons' || $handle == 'colors-fresh'))
        return "";

    else return $tag;
}

// display front-end header and footer on the login/registration page
add_action('login_footer', 'user16975_integrate_login');
function user16975_integrate_login(){
    ?><div id="page" class="hfeed site">
        <header id="masthead" class="site-header" role="banner">
            <a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
                <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
                <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
            </a>

            <div id="navbar" class="navbar">
                <nav id="site-navigation" class="navigation main-navigation" role="navigation">
                    <h3 class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></h3>
                    <a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
                    <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
                    <?php get_search_form(); ?>
                </nav><!-- #site-navigation -->
            </div><!-- #navbar -->
        </header><!-- #masthead -->

        <div id="main" class="site-main">
    <?php get_footer(); ?>
    <script>
        // move the login form into the page main content area
        jQuery('#main').append(jQuery('#login'));
    </script>
    <?php
}

次に、テーマのスタイルシートを変更して、フォームを希望どおりに表示します。

3)表示されたメッセージを微調整することで、フォームをさらに変更できます。

add_filter('login_message', 'user16975_login_message');
function user16975_login_message($message){
    if(strpos($message, 'register') !== false){
        $message = 'custom register message';
    } else {
        $message = 'custom login message';
    }
    return $message;
}

add_action('login_form', 'user16975_login_message2');
function user16975_login_message2(){
    echo 'another custom login message';
}

add_action('register_form', 'user16975_tweak_form');
function user16975_tweak_form(){
    echo 'another custom register message';
}

4)フロントエンドの登録フォームが必要な場合、登録ユーザーがログインするときにバックエンドが表示されることはおそらくないでしょう。

add_filter('user_has_cap', 'user16975_refine_role', 10, 3);
function user16975_refine_role($allcaps, $cap, $args){
    global $pagenow;

    $user = wp_get_current_user();
    if($user->ID != 0 && $user->roles[0] == 'subscriber' && is_admin()){
        // deny access to WP backend
        $allcaps['read'] = false;
    }

    return $allcaps;
}

add_action('admin_page_access_denied', 'user16975_redirect_dashbord');
function user16975_redirect_dashbord(){
    wp_redirect(home_url());
    die();
}

多くのステップがありますが、結果はここにあります!


0

方法は簡単に:と呼ばれるWordPressの機能を使用してwp_login_form()ここではコーデックスのページを)。

自分のページでショートコードを使用できるように、独自のプラグインを作成できます。

<?php
/*
Plugin Name: WP Login Form Shortcode
Description: Use <code>[wp_login_form]</code> to show WordPress' login form.
Version: 1.0
Author: WP-Buddy
Author URI: http://wp-buddy.com
License: GPLv2 or later
*/

add_action( 'init', 'wplfsc_add_shortcodes' );

function wplfsc_add_shortcodes() {
    add_shortcode( 'wp_login_form', 'wplfsc_shortcode' );
}

function wplfsc_shortcode( $atts, $content, $name ) {

$atts = shortcode_atts( array(
        'redirect'       => site_url( $_SERVER['REQUEST_URI'] ),
        'form_id'        => 'loginform',
        'label_username' => __( 'Username' ),
        'label_password' => __( 'Password' ),
        'label_remember' => __( 'Remember Me' ),
        'label_log_in'   => __( 'Log In' ),
        'id_username'    => 'user_login',
        'id_password'    => 'user_pass',
        'id_remember'    => 'rememberme',
        'id_submit'      => 'wp-submit',
        'remember'       => false,
        'value_username' => NULL,
        'value_remember' => false
), $atts, $name );

// echo is always false
$atts['echo'] = false;

// make real boolean values
$atts['remember']       = filter_var( $atts['remember'], FILTER_VALIDATE_BOOLEAN );
$atts['value_remember'] = filter_var( $atts['value_remember'], FILTER_VALIDATE_BOOLEAN );

return '<div class="cct-login-form">' . wp_login_form( $atts ) . '</div>';

}

あなたがしなければならないのは、フロントエンドでフォームをスタイルすることです。


-1

プラグインの使用を受け入れている場合、以前にGravity Formsのユーザー登録アドオンを使用したことがありますが、非常にうまく機能しました。

http://www.gravityforms.com/add-ons/user-registration/

編集:これは非常に詳細なソリューションではないことを理解していますが、それはまさにあなたが必要とするものを実行し、良いソリューションです。

編集:回答をさらに拡張するために、重力フォーム用のユーザー登録アドオンを使用すると、重力フォームを使用して作成されたフォーム内のフィールドをユーザー固有のフィールドにマッピングできます。たとえば、名、姓、メール、ウェブサイト、パスワードを含むフォームを作成できます。送信すると、アドオンはこれらの入力を関連するユーザーフィールドにマップします。

もう1つの素晴らしい点は、登録済みのユーザーを承認キューに追加できることです。ユーザーアカウントは、管理者によってバックエンドで承認された場合にのみ作成されます。

上記のリンクが壊れている場合は、Googleの「重力フォーム用のユーザー登録アドオン」のみ


2
質問に追加された@kaiserのメモ(大胆なもの)を読みましたか:説明とコンテキストを提供する長い答えを探しています。引用の説明を除去することができる含まれていない回答」。
gmazzap

私は持っていますが、アドオンはカスタムコーディングの必要性について言及していないので、アドオンはまだ言及する価値があると感じました。必要だと思う場合はコメントに移動して
James Kemp

私はMODではないので、あなたの答えをコメントするために移動することはできません。私は投票することしかできませんが、あなたのリンクには有用な情報が含まれていると思うので、私はそうしませんでしたが、そのリンクは簡単に変更できるため、リンクのみの回答は役に立たないため、あなたの回答は404になります。ここで関連するコードを報告し、そのコードが行うことを説明してみてください、そうすればあなたの答えは大丈夫だと思います。
gmazzap

ジェームズ、私はコードを含む本当の答えに賞金を授与しました。追加の賞金が必要な場合は、プラグインをバラバラにして、何をしているかを正確に示してください。ありがとう。
カイザー14年

こんにちはカイザー、私は報奨金の後にではなく、プラグインに関する私の知識を共有したかっただけです!
ジェームズケンプ14年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.