예제 #1
0
파일: sidebar.php 프로젝트: hemangsk/TCB
<?php

/**
 * The sidebar containing the main widget area.
 *
 * @package etrigan
 */
if (!is_active_sidebar('sidebar-1')) {
    return;
}
if (etrigan_load_sidebar()) {
    ?>
<div id="secondary" class="widget-area <?php 
    do_action('etrigan_secondary-width');
    ?>
" role="complementary">
	<?php 
    dynamic_sidebar('sidebar-1');
    ?>
</div><!-- #secondary -->
<?php 
}
예제 #2
0
function etrigan_primary_class()
{
    $sw = get_theme_mod('etrigan_sidebar_width', 4);
    $class = "col-md-" . (12 - $sw);
    if (!etrigan_load_sidebar()) {
        $class = "col-md-12";
    }
    echo $class;
}