Created
October 20, 2014 03:48
-
-
Save leocaseiro/8994aa3e4e20e75708ee to your computer and use it in GitHub Desktop.
Metabox Table HTML Form example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="form-table"> | |
<tbody> | |
<tr> | |
<th scope="row"><label>Example:</label></th> | |
<td> | |
<select name="select-name-whenever"> | |
<option>1</option> | |
<option>lorem</option> | |
</select> | |
</td> | |
</tr> | |
<tr> | |
<th scope="row"><label for="field">Field:</label></th> | |
<td> | |
<input type="text" name="field" value="" class="small-text"> | |
</td> | |
</tr> | |
<tr> | |
<th scope="row"><label for="field">Field:</label></th> | |
<td> | |
<input type="text" name="field" value="" class="regular-text"> | |
</td> | |
</tr> | |
<tr> | |
<th scope="row"><label for="field">Field:</label></th> | |
<td> | |
<input type="text" name="field" value="" class="large-text"> | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment