| Server IP : 172.64.80.1 / Your IP : 216.73.216.175 Web Server : LiteSpeed System : Linux srv13.swhc.ca 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : hongluck ( 2522) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/hongluck/public_html/wp-content/themes/himalayas/ |
Upload File : |
<?php
/**
* The Sidebar containing the footer widget areas.
*
* @package ThemeGrill
* @subpackage Himalayas
* @since Himalayas 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( 'himalayas_footer_sidebar_one' ) &&
!is_active_sidebar( 'himalayas_footer_sidebar_two' ) &&
!is_active_sidebar( 'himalayas_footer_sidebar_three' ) ) {
return;
}
?>
<div id="top-footer">
<div class="tg-container">
<div class="tg-column-wrapper">
<?php if( is_active_sidebar( 'himalayas_footer_sidebar_one' ) ): ?>
<div class="tg-column-3">
<?php
// Calling the footer sidebar one if it exists.
if ( !dynamic_sidebar( 'himalayas_footer_sidebar_one' ) ):
endif; ?>
</div>
<?php endif; ?>
<?php if( is_active_sidebar( 'himalayas_footer_sidebar_two' ) ): ?>
<div class="tg-column-3">
<?php
// Calling the footer sidebar two if it exists.
if ( !dynamic_sidebar( 'himalayas_footer_sidebar_two' ) ):
endif; ?>
</div>
<?php endif; ?>
<?php if( is_active_sidebar( 'himalayas_footer_sidebar_three' ) ): ?>
<div class="tg-column-3">
<?php
// Calling the footer sidebar three if it exists.
if ( !dynamic_sidebar( 'himalayas_footer_sidebar_three' ) ):
endif; ?>
</div>
<?php endif; ?>
</div> <!-- .tg-column-wrapper -->
</div> <!-- .tg-container -->
</div> <!-- .top-footer -->