PluginProbe ʕ •ᴥ•ʔ
Custom Sidebars – Dynamic Sidebar Classic Widget Area Manager / 3.36
Custom Sidebars – Dynamic Sidebar Classic Widget Area Manager v3.36
trunk 2.1.2.0 3.0.0.0 3.0.0.1 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.7.1 3.0.8 3.0.8.1 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3 3.31 3.32 3.35 3.36 3.37 3.38
custom-sidebars / views / widgets-delete.php
custom-sidebars / views Last commit date
bulk-edit.php 3 years ago col-sidebars.php 3 years ago import.php 3 years ago metabox.php 3 years ago quick-edit.php 9 years ago widgets-delete.php 3 years ago widgets-editor.php 3 years ago widgets-export.php 3 years ago widgets-location.php 3 years ago widgets.php 3 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 esc_html_e(
12 'Please confirm that you want to delete this sidebar.', 'custom-sidebars'
13 ); ?>
14 </div>
15 <div class="buttons">
16 <button type="button" class="button-link btn-cancel"><?php esc_html_e( 'Cancel', 'custom-sidebars' ); ?></button>
17 <button type="button" class="button-primary btn-delete"><?php esc_html_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