- Contact Form 7 provides several types of form-tags for representing checkboxes, radio buttons, and drop-down menus. This article explains about the usage and semantics of these form-tags.
Checkboxes and radio buttons#
- Both
checkbox
andcheckbox*
represent a group of checkboxes (<input type="checkbox">
in HTML).checkbox*
requires the user to select at least one of the boxes. radio
represents a group of radio buttons (<input type="radio">
in HTML). Because a group of radio buttons is naturally required, aradio
form-tag works as a required field. It is advised to preselect an option in a radio button group using thedefault:1
option.
|
|
|
---|---|---|
|
|
|
|
|
|
|
|
|
|
| |
|
| |
|
| |
|
| |
|
|
|
- These types of tags have one or more values, and the values will be used as the values and labels of the checkboxes or radio buttons.
- Example:
[checkbox your-country "China" "India" "San Marino"]
Drop-down menus#
- Both
select
andselect*
represent a drop-down menu (<select>
in HTML).select*
requires the user to select at least one option from the menu.
|
|
|
---|---|---|
|
|
|
|
|
|
|
|
|
|
| |
|
| |
|
| |
|
|
|
- These types of tags have one or more values, and the values will be used as options in the drop-down menu.
- Example:
[select your-country "China" "India" "San Marino"]
Demo#
- Note: This is a demo form and it doesn’t send an email practically.
- Select Country (required)
ChinaIndiaSan Marino - Select Sports
FootballTennisPole-vault - Select Fruit (required)
AppleBananaGrape - Select Browser (required)
---FirefoxSafariOperaLynx - Select Ghkdsjdf
fsdfsklgjfkvdrie
- View source of the preceding form:
Select Country (required) [checkbox* your-country use_label_element "China" "India" "San Marino"] Select Sports [radio your-sports label_first default:2 "Football" "Tennis" "Pole-vault"] Select Fruit (required) [checkbox* your-fruit exclusive "Apple" "Banana" "Grape"] Select Browser (required) [select* your-browser include_blank "Firefox" "Safari" "Opera" "Lynx"] Select Ghkdsjdf [select your-ghkdsjdf multiple "fsdfs" "klgjfk" "vdrie"] [submit "Send"]
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article