MOON
Server: Apache
System: Linux vps.erhabenn.com.br 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User: machen (1008)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /disk001/machen/www/support/wp-content/themes/wp-moose/template-parts/footer-widgets.php
<?php
/**
 * Footer widgets.
 */

if ( is_active_sidebar( 'footer-left' ) ||
     is_active_sidebar( 'footer-center' ) ||
     is_active_sidebar( 'footer-right' ) ) :
	?>
    <div class="border-t relative <?php wp_moose_footer_style(); ?>" role="complementary">
        <div class="container relative z-10 lg:flex mx-auto justify-between">
			<?php
			$sidebars = array(
				'footer-left'   => 'w-full lg:w-1/3 p-half-gutter',
				'footer-center' => 'w-full lg:w-1/3 p-half-gutter',
				'footer-right'  => 'w-full lg:w-1/3 p-half-gutter',
			);

			foreach ( $sidebars as $sidebar_id => $clsx ) {
				echo '<div class="' . $clsx . '">';
				if ( is_active_sidebar( $sidebar_id ) ) {
					dynamic_sidebar( $sidebar_id );
				}
				echo '</div>';
			}
			?>
        </div>
    </div>
<?php endif; ?>