Skip to content

Instantly share code, notes, and snippets.

@leocaseiro
Created October 20, 2014 03:48
Show Gist options
  • Save leocaseiro/8994aa3e4e20e75708ee to your computer and use it in GitHub Desktop.
Save leocaseiro/8994aa3e4e20e75708ee to your computer and use it in GitHub Desktop.
Metabox Table HTML Form example
<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