enable.blade.php
2 years ago
exclude.blade.php
2 years ago
icon.blade.php
2 years ago
label-show.blade.php
1 year ago
label.blade.php
2 years ago
manual-adjustment.blade.php
2 years ago
position.blade.php
2 years ago
post-types.blade.php
2 years ago
private.blade.php
2 years ago
views-to-count.blade.php
2 years ago
position.blade.php
8 lines
| 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', 'independent-analytics'); ?></option> |
| 4 | <option value="after" <?php selected($position, 'after', true); ?>><?php esc_html_e('After the content', 'independent-analytics'); ?></option> |
| 5 | <option value="both" <?php selected($position, 'both', true); ?>><?php esc_html_e('Before and after the content', 'independent-analytics'); ?></option> |
| 6 | </select> |
| 7 | </label> |
| 8 |