field-controls.php
1 year ago
field-header.php
1 year ago
field-label.php
1 week ago
field-name.php
1 year ago
field-text.php
1 year ago
field-type.php
1 year ago
field-text.php
15 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Field text for checkbox and radio. |
| 4 | */ |
| 5 | ?> |
| 6 | <tr class="field-label-row"> |
| 7 | <th><?php echo esc_html_x( 'Text', 'noun', 'strong-testimonials' ); ?></th> |
| 8 | <td> |
| 9 | <input type="text" class="field-label" |
| 10 | name="fields[<?php echo esc_attr( $key ); ?>][text]" |
| 11 | value="<?php echo esc_attr( $field['text'] ); ?>" |
| 12 | placeholder="<?php esc_html_e( 'next to the checkbox', 'strong-testimonials' ); ?>"> |
| 13 | </td> |
| 14 | </tr> |
| 15 |