hello
Server : Apache/2.4.52 (Ubuntu) System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : servadmin ( 1000) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE Directory : /www/docs/www.obusignal.com/www.obusignal.com/wp-content/themes/colormag-pro/ |
<?php
/**
* The Sidebar containing the footer widget areas.
*
* @package ThemeGrill
* @subpackage ColorMag
* @since ColorMag 1.0
*/
?>
<?php
/**
* The footer widget area is triggered if any of the areas
* have widgets. So let's check that first.
*
* If none of the sidebars have widgets, then let's bail early.
*/
if( !is_active_sidebar( 'colormag_footer_sidebar_one' ) &&
!is_active_sidebar( 'colormag_footer_sidebar_two' ) &&
!is_active_sidebar( 'colormag_footer_sidebar_three' ) &&
!is_active_sidebar( 'colormag_footer_sidebar_four' ) &&
!is_active_sidebar( 'colormag_footer_sidebar_one_upper' ) &&
!is_active_sidebar( 'colormag_footer_sidebar_two_upper' ) &&
!is_active_sidebar( 'colormag_footer_sidebar_three_upper' ) ) {
return;
}
?>
<div class="footer-widgets-wrapper">
<div class="inner-wrap">
<div class="footer-widgets-area clearfix">
<div class="tg-upper-footer-widgets clearfix">
<div class="footer_upper_widget_area tg-one-third">
<?php
if ( !dynamic_sidebar( 'colormag_footer_sidebar_one_upper' ) ):
endif;
?>
</div>
<div class="footer_upper_widget_area tg-one-third">
<?php
if ( !dynamic_sidebar( 'colormag_footer_sidebar_two_upper' ) ):
endif;
?>
</div>
<div class="footer_upper_widget_area tg-one-third tg-one-third-last">
<?php
if ( !dynamic_sidebar( 'colormag_footer_sidebar_three_upper' ) ):
endif;
?>
</div>
</div>
<div class="tg-footer-main-widget">
<div class="tg-first-footer-widget">
<?php
if ( !dynamic_sidebar( 'colormag_footer_sidebar_one' ) ):
endif;
?>
</div>
</div>
<div class="tg-footer-other-widgets">
<div class="tg-second-footer-widget">
<?php
if ( !dynamic_sidebar( 'colormag_footer_sidebar_two' ) ):
endif;
?>
</div>
<div class="tg-third-footer-widget">
<?php
if ( !dynamic_sidebar( 'colormag_footer_sidebar_three' ) ):
endif;
?>
</div>
<div class="tg-fourth-footer-widget">
<?php
if ( !dynamic_sidebar( 'colormag_footer_sidebar_four' ) ):
endif;
?>
</div>
</div>
</div>
</div>
</div>