function store_primary_class()
{
    $sw = get_theme_mod('store_sidebar_width', 4);
    $class = "col-md-" . (12 - $sw);
    if (!store_load_sidebar()) {
        $class = "col-md-12";
    }
    echo $class;
}
Exemple #2
0
<?php

/**
 * The sidebar containing the main widget area.
 *
 * @package store
 */
if (!is_active_sidebar('sidebar-1')) {
    return;
}
if (store_load_sidebar()) {
    ?>
<div id="secondary" class="widget-area <?php 
    do_action('store_secondary-width');
    ?>
" role="complementary">
	<?php 
    dynamic_sidebar('sidebar-1');
    ?>
</div><!-- #secondary -->
<?php 
}