Server : nginx/1.24.0 System : Linux ip-172-31-33-48 6.14.0-1011-aws #11~24.04.1-Ubuntu SMP Fri Aug 1 02:07:25 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE Directory : /var/www/html/wp-content/themes/alera/ |
Upload File : |
<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Alera */ ?> <footer class="footer" role="contentinfo"> <div class="container"> <div class="columns is-variable is-8"> <div class="column is-3"> <?php if ( is_active_sidebar( 'footer-1 ' ) ) : ?> <?php dynamic_sidebar( 'footer-1' ); ?> <?php endif; ?> </div> <div class="column is-3"> <?php if ( is_active_sidebar( 'footer-2 ' ) ) : ?> <?php dynamic_sidebar( 'footer-2' ); ?> <?php endif; ?> </div> <div class="column is-3"> <?php if ( is_active_sidebar( 'footer-3 ' ) ) : ?> <?php dynamic_sidebar( 'footer-3' ); ?> <?php endif; ?> </div> <div class="column is-3"> <?php if ( is_active_sidebar( 'footer-4 ' ) ) : ?> <?php dynamic_sidebar( 'footer-4' ); ?> <?php endif; ?> </div> </div> </div> <?php $get_copyright_text = get_theme_mod('copyright_text', esc_html__('© 2020 - All rights reserved. Theme by Mobeen Abdullah', 'alera')); ?> <?php if (!empty($get_copyright_text)) : ?> <div class="site-info has-text-align-center"> <?php echo esc_html($get_copyright_text); ?> </div> <?php endif; ?> </footer> <?php wp_footer(); ?> </body> </html>