6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MW WP FormのViewフラグの設定

Posted at

#素晴らしきMW WP Form
Wordpress開発者であれば、一度はお目にかかるであろう「MW WP Form
簡単にフォームを作成でき、確認画面やバリデーションの設定も容易にできる。
マジでオススメ。(MW WP Formの回し者じゃないよ)

#この記事を書いた理由
このプラグインを使用している時に、テンプレート側で表示画面の情報を取得したい!
あれ、どうやるんだ?ってなった人向けにこの記事を残します。

#設定方法
早速設定方法をば。

functions.php
function entry_mwform_setquery($url, $Data){
  if($Data->get_view_flg() === "input"){
    set_query_var("entry_form_view_flg", "input");
  }elseif($Data->get_view_flg() === "confirm"){
    set_query_var("entry_form_view_flg", "confirm");
  }elseif($Data->get_view_flg() === "complete"){
    set_query_var("entry_form_view_flg", "complete");
  }
  return $url;
}
add_action('mwform_redirect_url_mw-wp-form-***', 'entry_mwform_setquery', 10, 2); //***にフォームのkeyを設定

#取得方法

template.php
$view_flg = get_query_var("entry_form_view_flg");

#あとがき
この他にもいろいろ便利なアクションフックが揃っているので、
ぜひMW WP Formを使いましょ!(MW WP Formの回し者じゃないよ)

6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?