removes sidebar roles
This commit is contained in:
parent
21345afedf
commit
ae71bde7c8
|
|
@ -17,9 +17,9 @@ $sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
|||
?>
|
||||
|
||||
<?php if ( 'both' === $sidebar_pos ) : ?>
|
||||
<div class="col-md-3 widget-area" id="left-sidebar" role="complementary">
|
||||
<div class="col-md-3 widget-area" id="left-sidebar">
|
||||
<?php else : ?>
|
||||
<div class="col-md-4 widget-area" id="left-sidebar" role="complementary">
|
||||
<div class="col-md-4 widget-area" id="left-sidebar">
|
||||
<?php endif; ?>
|
||||
<?php dynamic_sidebar( 'left-sidebar' ); ?>
|
||||
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@ $sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
|||
?>
|
||||
|
||||
<?php if ( 'both' === $sidebar_pos ) : ?>
|
||||
<div class="col-md-3 widget-area" id="right-sidebar" role="complementary">
|
||||
<div class="col-md-3 widget-area" id="right-sidebar">
|
||||
<?php else : ?>
|
||||
<div class="col-md-4 widget-area" id="right-sidebar" role="complementary">
|
||||
<div class="col-md-4 widget-area" id="right-sidebar">
|
||||
<?php endif; ?>
|
||||
<?php dynamic_sidebar( 'right-sidebar' ); ?>
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ if ( ! is_active_sidebar( 'sidebar-1' ) ) {
|
|||
}
|
||||
?>
|
||||
|
||||
<div class="col-md-4 widget-area" id="secondary" role="complementary">
|
||||
<div class="col-md-4 widget-area" id="secondary">
|
||||
|
||||
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue