2017-01-27 12:22:02 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Left sidebar check.
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
2016-11-14 14:16:24 +00:00
|
|
|
<?php
|
2016-11-19 11:05:37 +00:00
|
|
|
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
|
2016-11-14 14:16:24 +00:00
|
|
|
?>
|
2017-02-11 08:07:40 +00:00
|
|
|
|
|
|
|
<?php if ( 'left' === $sidebar_pos || 'both' === $sidebar_pos ) : ?>
|
2016-11-19 11:05:37 +00:00
|
|
|
<?php get_sidebar( 'left' ); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2017-02-11 08:08:53 +00:00
|
|
|
<?php {
|
2016-11-21 16:25:56 +00:00
|
|
|
$html = '';
|
|
|
|
if ( 'right' === $sidebar_pos || 'left' === $sidebar_pos ) {
|
|
|
|
$html = '<div class="';
|
|
|
|
if ( is_active_sidebar( 'right-sidebar' ) || is_active_sidebar( 'left-sidebar' ) ) {
|
|
|
|
$html .= 'col-md-8 content-area" id="primary">';
|
|
|
|
} else {
|
|
|
|
$html .= 'col-md-12 content-area" id="primary">';
|
2016-11-19 11:05:37 +00:00
|
|
|
}
|
2017-02-02 11:20:03 +00:00
|
|
|
echo $html; // WPCS: XSS OK.
|
2016-11-21 16:25:56 +00:00
|
|
|
} elseif ( is_active_sidebar( 'right-sidebar' ) && is_active_sidebar( 'left-sidebar' ) ) {
|
|
|
|
$html = '<div class="';
|
|
|
|
if ( 'both' === $sidebar_pos ) {
|
|
|
|
$html .= 'col-md-6 content-area" id="primary">';
|
|
|
|
} else {
|
|
|
|
$html .= 'col-md-12 content-area" id="primary">';
|
|
|
|
}
|
2017-02-02 11:20:03 +00:00
|
|
|
echo $html; // WPCS: XSS OK.
|
2017-01-10 14:00:19 +00:00
|
|
|
} else {
|
2017-04-15 04:04:22 +00:00
|
|
|
echo '<div class="col-md-12 content-area" id="primary">';
|
2016-11-19 11:05:37 +00:00
|
|
|
}
|
2016-11-21 16:25:56 +00:00
|
|
|
}
|