Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/geniouskin/wp-content/themes/ixlab/tmpl/ |
Upload File : |
<?php
/**
* The template for displaying footer widget
*/
defined( 'ABSPATH' ) or die();
$classes = array( 'footer-widgets' );
if ( ixlab_option( 'footer__widgets__full' ) == 'on' ) {
$classes[] = 'footer-widgets-full';
}
$layout = ixlab_option( 'footer__widgets__layout' );
$columns = $layout['columns'];
$columnsLayout = $layout['layout'][$columns];
?>
<?php if ( ixlab_option( 'footer__widgets' ) == 'on' ): ?>
<div class="<?php echo esc_attr( join( ' ', $classes ) ) ?>">
<div class="footer-widgets-inner wrap">
<div class="footer-aside-wrap">
<?php foreach( range( 0, $columns - 1 ) as $index ): ?>
<aside data-width="<?php echo esc_attr( $columnsLayout[$index] ) ?>"><?php dynamic_sidebar( sprintf( 'footer-%d', $index + 1 ) ) ?></aside>
<?php endforeach ?>
</div>
</div>
</div>
<?php endif ?>