Ok not please try adding following function in your child theme’s functions.php file.
/**
* Function to update sidebars
*/
function clean_magazine_child_update_sidebars() {
unregister_sidebar( 'primary-sidebar' );
unregister_sidebar( 'header-right' );
unregister_sidebar( 'footer-1' );
unregister_sidebar( 'footer-2' );
unregister_sidebar( 'footer-3' );
//Primary Sidebar
register_sidebar( array(
'name' => __( 'Primary Sidebar', 'clean-magazine' ),
'id' => 'primary-sidebar',
'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">',
'after_widget' => '</div><!-- .widget-wrap --></section><!-- #widget-default-search -->',
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
'description' => __( 'This is the primary sidebar if you are using a two column site layout option.', 'clean-magazine' ),
) );
//Header Right
register_sidebar( array(
'name' => __( 'Header Right', 'clean-magazine' ),
'id' => 'header-right',
'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">',
'after_widget' => '</div><!-- .widget-wrap --></section><!-- #widget-default-search -->',
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
'description' => __( 'This is the header right widget area. It typically appears on the right of the site title or logo. This widget area is not equipped to display any widget, and works best with a search form, social icons widget, Advertisement Widget or possibly a text widget.', 'clean-magazine' ),
) );
for( $i=1; $i <= 3; $i++ ) {
register_sidebar( array(
'name' => sprintf( __( 'Footer Area %d', 'clean-magazine' ), $i ),
'id' => sprintf( 'footer-%d', $i ),
'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">',
'after_widget' => '</div><!-- .widget-wrap --></section><!-- #widget-default-search -->',
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
'description' => sprintf( __( 'Footer %d widget area.', 'clean-magazine' ), $i ),
) );
}
}
add_action( 'widgets_init', 'clean_magazine_child_update_sidebars', 11 );