view_counter
3 years ago
block_by_role.php
3 years ago
block_ips.php
3 years ago
capabilities.php
3 years ago
dark_mode.php
3 years ago
delete.php
3 years ago
email_reports.php
3 years ago
export.php
3 years ago
first_day_of_week.php
3 years ago
index.php
3 years ago
notice.php
3 years ago
track_authenticated_users.php
3 years ago
view_counter.php
3 years ago
first_day_of_week.php
8 lines
| 1 | <select name="iawp_dow" id="iawp_dow" value="<?php echo esc_attr($day_of_week); ?>"> |
| 2 | <?php foreach ($days as $index => $day): ?> |
| 3 | <option value="<?php esc_attr_e($index); ?>" <?php selected($index, $day_of_week, true); ?>> |
| 4 | <?php esc_html_e($day); ?> |
| 5 | </option> |
| 6 | <?php endforeach ?> |
| 7 | </select> |
| 8 |