0

ページに連絡フォーム7を適用しましたが、値をバックエンドにも保存したいと思います。現在、値はメールIDに送信されます。私を助けてください。ありがとうございました

4

2 に答える 2

1

ホームページを見ると、フラミンゴプラグインをインストールしてwordpress.org / extend / plugins/contact-form-7を正確に実行できるようです。フラミンゴへのリンクwordpress.org/extend/plugins/flamingo

于 2013-02-22T07:32:20.010 に答える
0

メールが送信される前にプラグインをフックします。

function save_email (&$WPCF7_ContactForm) {

  # write the code to get the email address
  # and save it to your database
  # you might want to use print_r($WPCF7_ContactForm)
  # to get the values used by the form
}
add_action("wpcf7_before_send_mail", "save_email");

このプラグインは、独自のものをコーディングすることに興味がない場合に役立つ可能性があります。

于 2013-02-22T07:29:42.083 に答える