File: //old_home_backup/vinylsingles.co.uk/public_html/wp-content/themes/aadya/sidebar-left.php
<?php
/**
* Sidebar Left
*
* Content for our sidebar, provides prompt for logged in users to create widgets
*
* @package Aadya
* @subpackage Aadya
* @since Aadya 1.0.0
*/
?>
<?php $aadya_col = aadya_get_sidebar_cols();
$aadya_layout = of_get_option('page_layouts');
if($aadya_layout == "sidebar-content-sidebar" || $aadya_layout == "content-sidebar-sidebar") {
$aadya_col = 2;
}
if($aadya_layout == "sidebar-content") {
$aadya_smcol = 4;
} elseif($aadya_layout == "sidebar-content-sidebar" || $aadya_layout == "content-sidebar-sidebar") {
$aadya_smcol = 3;
}
if(is_page_template('page-templates/sidebar-content-sidebar.php') || is_page_template('page-templates/content-sidebar-sidebar.php')) {
$aadya_smcol = 3; $aadya_col = 2;
}
?>
<!-- Sidebar -->
<div class="col-xs-12 col-sm-<?php echo $aadya_smcol;?> col-md-<?php echo $aadya_col;?> sidebar-left" >
<div id="left-secondary">
<?php if ( dynamic_sidebar('aadya_sidebar_left') ) : elseif( current_user_can( 'edit_theme_options' ) ) : ?>
<h5><?php _e( 'No widgets found.', 'aadya' ); ?></h5>
<p><?php printf( __( 'It seems you don\'t have any widgets in your sidebar! Would you like to %s now?', 'aadya' ), '<a href=" '. get_admin_url( '', 'widgets.php' ) .' ">populate your sidebar</a>' ); ?></p>
<?php endif; ?>
</div>
</div>
<!-- End Sidebar -->