Merge pull request #137 from saknopper/fix-sidebar-left-id

Sidebar left: remove single quotes in the id attribute -Thx @saknopper
This commit is contained in:
Holger 2016-11-19 12:14:59 +01:00 committed by GitHub
commit c7dcefe362
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' ); ?>