Your IP : 216.73.216.95


Current Path : /var/test/www/mainsite/wp-content/themes/alone/
Upload File :
Current File : /var/test/www/mainsite/wp-content/themes/alone/sidebar-fully-template.php

<?php
/**
 * The Sidebar containing the main widget area
 */

$alone_sidebar_position = null;
if ( function_exists( 'fw_ext_sidebars_get_current_position' ) ) :
	$alone_sidebar_position = fw_ext_sidebars_get_current_position();
	if ( $alone_sidebar_position !== 'full' && $alone_sidebar_position !== null ) : ?>
		<div class="col-md-3 col-sm-12 bt-sidebar" role="complementary" itemscope="itemscope" itemtype="http://schema.org/WPSideBar">
			<div class="bt-col-inner">
				<?php if ( $alone_sidebar_position === 'left' || $alone_sidebar_position === 'right' ) : ?>
					<?php echo fw_ext_sidebars_show( 'blue' ); ?>
				<?php endif; ?>
			</div><!-- /.inner -->
		</div><!-- /.sidebar -->
	<?php endif; ?>
<?php else : ?>
	<div class="col-md-3 col-sm-12 bt-sidebar" role="complementary" itemscope="itemscope" itemtype="http://schema.org/WPSideBar">
		<div class="bt-col-inner">
			<?php dynamic_sidebar( 'sidebar-1' ); ?>
		</div><!-- /.inner -->
	</div><!-- /.sidebar -->
<?php endif; ?>