商品毎に「問合せボタン」を設置して、問合せフォームに飛んだ時、
問合せフォームのタイトルにクリックされた商品情報がデフォルトで入力された状態にします。
functions.phpに関数を追加します。
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
//Contact Form 7 <? function my_form_tag_filter($tag){ if ( ! is_array( $tag ) ) return $tag; if(isset($_POST['thetitle'])){ $name = $tag['name']; if($name == 'item_name') //フォームのテキストボックス名:item_name $tag['values'] =(array) $_POST['thetitle']; } return $tag; } add_filter('wpcf7_form_tag', 'my_form_tag_filter', 11); |
single.php などに問合せボタンを設置する
この場合は、商品名、the_title() をhiddenで渡しています
|
1 2 3 4 |
<form method="post" action="/contactus/"> <input type="hidden" name="thetitle" value="<?php the_title(); ?>"> <input type="image" src="/img/prod_toiawase.png"> </form> |