私は標準Wordpressのコメントフォームを使用していますが、私はそうのように、フォームに追加のフィールドとしてのラジオボタンを追加したいと思います:追加&店舗余分なフィールド - Wordpressのコメント
マイPHPへ追加情報(フロントエンドで)次のように標準的な形式があるが、私は追加するには最適なルートを知らない、店舗やショーを生成:
<?php
$fields = array(
'author' =>
'<p class="comment-form-author"><label for="author">' . __('Name', 'domainreference') . '</label> ' .
($req ? '<span class="required">*</span>' : '') .
'<input id="author" name="author" placeholder="Enter your name" type="text" value="' . esc_attr($commenter['comment_author']) . '" size="30"' . $aria_req . ' /></p>',
'email' =>
'<p class="comment-form-email"><label for="email">' . __('Email', 'domainreference') . '</label> ' .
($req ? '<span class="required">*</span>' : '') .
'<input id="email" name="email" placeholder="Enter your email address" type="text" value="' . esc_attr( $commenter['comment_author_email']) . '" size="30"' . $aria_req . ' /></p>',
'comment_field' =>
'<p class="comment-form-comment"><label for="comment">' . _x('Comment', 'noun') .
'</label><textarea id="comment" placeholder="Enter your comment" name="comment" cols="45" rows="8" aria-required="true">' .
'</textarea></p>'
);
$args = array(
'id_form' => 'commentform',
'class_form' => 'comment-form',
'id_submit' => 'submit',
'class_submit' => 'submit btn',
'name_submit' => 'submit',
'title_reply' => __('Leave a Reply'),
'title_reply_to' => __('Leave a Reply to %s'),
'cancel_reply_link' => __('Cancel Reply'),
'label_submit' => __('Post Comment'),
'format' => 'xhtml',
'fields' => apply_filters('comment_form_default_fields', $fields)
);
comment_form($args); ?>
をこれが正見えますが、どこ私の既存のコードに私はあなたのコードを配置しますか?私は自分のコードにペーストしましたが、うまくいきませんでした – egr103