bulk-edit.php
7 years ago
col-sidebars.php
7 years ago
import.php
7 years ago
metabox.php
5 years ago
quick-edit.php
9 years ago
widgets-delete.php
8 years ago
widgets-editor.php
8 years ago
widgets-export.php
8 years ago
widgets-location.php
7 years ago
widgets.php
7 years ago
widgets-delete.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Contents of the Delete-sidebar popup in the widgets screen. |
| 4 | * |
| 5 | * This file is included in widgets.php. |
| 6 | */ |
| 7 | ?> |
| 8 | |
| 9 | <div class="wpmui-form"> |
| 10 | <div> |
| 11 | <?php _e( |
| 12 | 'Please confirm that you want to delete the sidebar <strong class="name"></strong>.', 'custom-sidebars' |
| 13 | ); ?> |
| 14 | </div> |
| 15 | <div class="buttons"> |
| 16 | <button type="button" class="button-link btn-cancel"><?php _e( 'Cancel', 'custom-sidebars' ); ?></button> |
| 17 | <button type="button" class="button-primary btn-delete"><?php _e( 'Yes, delete it', 'custom-sidebars' ); ?></button> |
| 18 | <?php wp_nonce_field( 'custom-sidebars-delete-sidebar', '_wp_nonce_cs_delete_sidebar' ); ?> |
| 19 | </div> |
| 20 | </div> |
| 21 |