Sidebar left: remove single quotes in the id attribute
This commit is contained in:
parent
cab2e38bf2
commit
3fb5650641
|
@ -14,9 +14,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" role="complementary">
|
||||
<?php else: ?>
|
||||
<div class="col-md-4 widget-area" id="'left-sidebar'" role="complementary">
|
||||
<div class="col-md-4 widget-area" id="left-sidebar" role="complementary">
|
||||
<?php endif; ?>
|
||||
<?php dynamic_sidebar( 'left-sidebar' ); ?>
|
||||
|
||||
|
|
Reference in New Issue