removes sidebar roles

This commit is contained in:
Brian Coords 2021-08-19 17:03:41 -07:00
parent 21345afedf
commit ae71bde7c8
3 changed files with 5 additions and 5 deletions

View File

@ -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' ); ?>

View File

@ -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' ); ?>

View File

@ -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' ); ?>