wordpress固定ページにカスタム投稿記事一覧で読みこみ、記事の詳細からお問い合わせページにリンクするように設定しています。
その際記事の内容によって、遷移先の申し込みページのラジオボタンを選択した状態にしたいと思っています。何か良い方法はないでしょうか。
考えた方法
・記事ごとにタームを持たせ、タームの情報を変数で引き継ぐ
・お問い合わせページで変数の内容に合わせてラジオボタンにチェックを入れる
備考
お問い合わせについては「MW WP FORM」などのプラグインを利用せず、
Googleフォームを独自デザインにしてホームページに埋め込む方法で設定します。
固定ページソースコード
<?php query_posts("post_type=カスタム投稿&posts_per_page=-1"); ?> <?php if(have_posts()): ?> <?php while(have_posts()): the_post(); ?> 記事の内容 <div><a href="<?php bloginfo('url'); ?>/contact">申し込む</a></div> <?php endwhile; ?> <?php endif; wp_reset_query(); ?>
問い合わせページラジオボタン
<ul> <li class="list_item"> <label> <input type="radio" class="option-input hide" name="entry.1544160693" value="A" required="">A</label> </li> <li class="list_item"> <label> <input type="radio" class="option-input hide" name="entry.1544160693" value="B">B</label> </li> <li class="list_item"> <label> <input type="radio" class="option-input hide" name="entry.1544160693" value="C">C</label> </li> </ul>
回答1件
あなたの回答
tips
プレビュー