This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-05 12:34:48 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The sidebar containing the main widget area.
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
2016-11-05 12:35:33 +00:00
|
|
|
if ( ! is_active_sidebar( 'left-sidebar' ) ) {
|
2016-11-05 12:34:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-11-05 12:35:33 +00:00
|
|
|
|
|
|
|
// when both sidebars turned on reduce col size to 3 from 4.
|
2016-11-05 12:34:48 +00:00
|
|
|
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
|
|
|
?>
|
|
|
|
|
2016-11-19 17:43:22 +00:00
|
|
|
<?php if ( 'both' === $sidebar_pos ) : ?>
|
2016-11-18 16:44:01 +00:00
|
|
|
<div class="col-md-3 widget-area" id="left-sidebar" role="complementary">
|
2016-11-19 17:43:22 +00:00
|
|
|
<?php else : ?>
|
2016-11-18 16:44:01 +00:00
|
|
|
<div class="col-md-4 widget-area" id="left-sidebar" role="complementary">
|
2016-11-05 12:34:48 +00:00
|
|
|
<?php endif; ?>
|
2016-11-05 12:35:33 +00:00
|
|
|
<?php dynamic_sidebar( 'left-sidebar' ); ?>
|
2016-11-05 12:34:48 +00:00
|
|
|
|
|
|
|
</div><!-- #secondary -->
|