columns
3 months ago
create-modal
1 year ago
edit-modal
2 months ago
bulk-edit.php
1 year ago
filters.php
3 months ago
quick-edit.php
1 year ago
quick-edit.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Placement Quick Edit form |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.50.0 |
| 8 | */ |
| 9 | ?> |
| 10 | <fieldset class="inline-edit-col-left advanced-ads" disabled> |
| 11 | <div class="inline-edit-col"> |
| 12 | <div class="inline-edit-group"> |
| 13 | <label class="alignleft"> |
| 14 | <span class="title"><?php esc_html_e( 'Status', 'advanced-ads' ); ?></span> |
| 15 | <select name="status"> |
| 16 | <option value="publish"><?php esc_html_e( 'Published', 'advanced-ads' ); ?></option> |
| 17 | <option value="draft"><?php esc_html_e( 'Draft', 'advanced-ads' ); ?></option> |
| 18 | </select> |
| 19 | </label> |
| 20 | </div> |
| 21 | </div> |
| 22 | </fieldset> |
| 23 |