Widgets: Show the "Clear Inactive Widgets" button only after the sidebar with inactive widgets.
Fixes #35447. git-svn-id: https://develop.svn.wordpress.org/trunk@36368 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
832197c6e6
commit
58082f28e6
@ -406,10 +406,13 @@ foreach ( $wp_registered_sidebars as $sidebar => $registered_sidebar ) {
|
|||||||
if ( !empty( $registered_sidebar['class'] ) )
|
if ( !empty( $registered_sidebar['class'] ) )
|
||||||
$wrap_class .= ' ' . $registered_sidebar['class'];
|
$wrap_class .= ' ' . $registered_sidebar['class'];
|
||||||
|
|
||||||
|
$is_inactive_widgets = 'wp_inactive_widgets' == $registered_sidebar['id'];
|
||||||
?>
|
?>
|
||||||
<div class="<?php echo esc_attr( $wrap_class ); ?>">
|
<div class="<?php echo esc_attr( $wrap_class ); ?>">
|
||||||
<div class="widget-holder inactive">
|
<div class="widget-holder inactive">
|
||||||
<?php wp_list_widget_controls( $registered_sidebar['id'], $registered_sidebar['name'] ); ?>
|
<?php wp_list_widget_controls( $registered_sidebar['id'], $registered_sidebar['name'] ); ?>
|
||||||
|
|
||||||
|
<?php if ( $is_inactive_widgets ) { ?>
|
||||||
<div class="remove-inactive-widgets">
|
<div class="remove-inactive-widgets">
|
||||||
<form action="" method="post">
|
<form action="" method="post">
|
||||||
<p>
|
<p>
|
||||||
@ -427,8 +430,11 @@ foreach ( $wp_registered_sidebars as $sidebar => $registered_sidebar ) {
|
|||||||
<?php wp_nonce_field( 'remove-inactive-widgets', '_wpnonce_remove_inactive_widgets' ); ?>
|
<?php wp_nonce_field( 'remove-inactive-widgets', '_wpnonce_remove_inactive_widgets' ); ?>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
|
<?php if ( $is_inactive_widgets ) { ?>
|
||||||
<p class="description"><?php _e( 'This will clear all items from the inactive widgets list. You will not be able to restore any customizations.' ); ?></p>
|
<p class="description"><?php _e( 'This will clear all items from the inactive widgets list. You will not be able to restore any customizations.' ); ?></p>
|
||||||
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user