Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
newspaperex
/
//home/puskom/mastur/newspaperex/sidebar-frontcontent.php
<?php /** * The sidebar containing the main widget area. * * @package Newspaperex */ if ( ! is_active_sidebar( 'front-page-content' ) ) { return; } $rtActive = is_active_sidebar('front-right-page-sidebar'); $ltActive = is_active_sidebar('front-left-page-sidebar'); ?> <div class="<?php if($ltActive && $rtActive){ echo 'col-md-6'; } elseif(!$rtActive && !$ltActive) { echo 'col-md-12'; } if(!$rtActive && $ltActive) { echo 'col-md-8'; } if($rtActive && !$ltActive) { echo 'col-md-8'; } ?>"> <?php dynamic_sidebar( 'front-page-content' ); ?> </div>