HEX
Server: LiteSpeed
System: Linux altar40.supremepanel40.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: sescorpcl (4477)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/sescorpcl/public_html/wp-content/themes/customizr/templates/parts/footer/footer_widgets.php
<?php
/**
 * The template for displaying the footer widgets
*/
?>
<div id="footer-widget-area" class="widget__wrapper" role="complementary" <?php czr_fn_echo('element_attributes') ?>>
  <div class="container widget__container">
    <div class="row">
      <?php do_action("__before_footer_widgets") ?>
      <?php
        $_footer_widgets  = apply_filters( 'czr_footer_widgets', CZR_init::$instance -> footer_widgets );
        $class = $_footer_widgets ? 'col-md-' . 12/( count($_footer_widgets) ) : '';

        foreach ( $_footer_widgets as $key => $area ):
        ?>
          <div id="<?php echo $key ?>" class="<?php echo $class ?> col-12">
            <?php dynamic_sidebar( $key ) ?>
          </div>
        <?php
        endforeach;
      ?>
      <?php do_action("__after_footer_widgets") ?>
    </div>
  </div>
</div>