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.
understrap/sidebar-templates/sidebar-right.php

24 lines
585 B
PHP
Raw Normal View History

<?php
/**
2016-11-05 12:35:33 +00:00
* The right sidebar containing the main widget area.
*
* @package understrap
*/
if ( ! is_active_sidebar( 'right-sidebar' ) ) {
return;
}
2016-11-05 12:35:33 +00:00
// when both sidebars turned on reduce col size to 3 from 4.
$sidebar_pos = get_theme_mod( 'understrap_sidebar_position' );
?>
<?php if ( 'both' === $sidebar_pos ) : ?>
2016-11-05 12:35:33 +00:00
<div class="col-md-3 widget-area" id="right-sidebar" role="complementary">
<?php else : ?>
2016-11-05 12:35:33 +00:00
<div class="col-md-4 widget-area" id="right-sidebar" role="complementary">
<?php endif; ?>
<?php dynamic_sidebar( 'right-sidebar' ); ?>
</div><!-- #right-sidebar -->