HEX
Server: Apache
System: Linux sg2plmcpnl492417.prod.sin2.secureserver.net 4.18.0-553.58.1.lve.el8.x86_64 #1 SMP Fri Jul 4 12:07:06 UTC 2025 x86_64
User: nyiet8349bzl (9207396)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/nyiet8349bzl/www/oldwebsite.sbsc.in/wp-content/themes/scholarship/sidebar-footer.php
<?php
/**
 * The Sidebar containing the footer widget areas.
 *
 * @package Mystery Themes
 * @subpackage Scholarship
 * @since 1.0.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( 'scholarship_footer_sidebar' ) &&
	!is_active_sidebar( 'scholarship_footer_sidebar-2' ) &&
    !is_active_sidebar( 'scholarship_footer_sidebar-3' ) &&
    !is_active_sidebar( 'scholarship_footer_sidebar-4' ) ) {
	   return;
}
$scholarship_footer_layout = get_theme_mod( 'footer_widget_layout', 'column_three' );
?>
<div id="top-footer" class="footer-widgets-wrapper footer_<?php echo esc_attr( $scholarship_footer_layout ); ?> clearfix">
    <div class="mt-container">
        <div class="footer-widgets-area clearfix">
            <div class="mt-footer-widget-wrapper mt-column-wrapper clearfix">
          		<div class="scholarship-footer-widget wow fadeInLeft" data-wow-duration="0.5s">
          			<?php
                        if ( is_active_sidebar( 'scholarship_footer_sidebar' ) ) :
                            dynamic_sidebar( 'scholarship_footer_sidebar' );
              			endif;
          			?>
          		</div>
      		    <?php if ( $scholarship_footer_layout != 'column_one' ){ ?>
                <div class="scholarship-footer-widget wow fadeInLeft" data-woww-duration="1s">
                <?php
                    if ( is_active_sidebar( 'scholarship_footer_sidebar-2' ) ) :
                        dynamic_sidebar( 'scholarship_footer_sidebar-2' );
                    endif;
          		?>
          		</div>
                <?php } ?>
                <?php if ( $scholarship_footer_layout == 'column_three' || $scholarship_footer_layout == 'column_four' ){ ?>
                <div class="scholarship-footer-widget wow fadeInLeft" data-wow-duration="1.5s">
                <?php
                    if ( is_active_sidebar( 'scholarship_footer_sidebar-3' ) ) :
                        dynamic_sidebar( 'scholarship_footer_sidebar-3' );
                    endif;
                ?>
                </div>
                <?php } ?>
                <?php if ( $scholarship_footer_layout == 'column_four' ){ ?>
                <div class="scholarship-footer-widget wow fadeInLeft" data-wow-duration="2s">
                <?php
                    if ( is_active_sidebar( 'scholarship_footer_sidebar-4' ) ) :
                        dynamic_sidebar( 'scholarship_footer_sidebar-4' );
                    endif;
                ?>
                </div>
            <?php } ?>
            </div><!-- .mt-footer-widget-wrapper -->
        </div><!-- .footer-widgets-area -->
    </div><!-- .mt-container -->
</div><!-- .footer-widgets-wrapper -->