| 1 |
<label class="column-label" for="iawp_view_counter_position"> |
| 2 |
<select name="iawp_view_counter_position" id="iawp_view_counter_position"> |
| 3 |
<option value="before" <?php selected($position, 'before', true); ?>><?php esc_html_e('Before the content', 'iawp'); ?></option> |
| 4 |
<option value="after" <?php selected($position, 'after', true); ?>><?php esc_html_e('After the content', 'iawp'); ?></option> |
| 5 |
<option value="both" <?php selected($position, 'both', true); ?>><?php esc_html_e('Before and after the content', 'iawp'); ?></option> |
| 6 |
</select> |
| 7 |
</label> |
| 8 |
|