Sidebar left: remove single quotes in the id attribute

This commit is contained in:
Sander Knopper 2016-11-18 17:44:01 +01:00
parent cab2e38bf2
commit 3fb5650641
1 changed files with 2 additions and 2 deletions

View File

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