mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
31 lines
672 B
PHP
31 lines
672 B
PHP
<?php
|
|
/**
|
|
* Footer widgets
|
|
*
|
|
* @package hero
|
|
*/
|
|
|
|
$active = array();
|
|
for ( $i = 1; $i <= 3; $i++ ) {
|
|
if ( is_active_sidebar( 'footer-' . $i ) ) {
|
|
$active[] = $i;
|
|
}
|
|
}
|
|
|
|
if ( 0 === count( $active ) ) {
|
|
return;
|
|
}
|
|
?>
|
|
|
|
<div id="footer-widgets">
|
|
<div class="container">
|
|
<div class="row">
|
|
<?php foreach ( $active as $hero_id ) : ?>
|
|
<aside class="footer-active-<?php echo absint( count( $active ) ); ?> footer-widget-area">
|
|
<?php dynamic_sidebar( 'footer-' . $hero_id ); ?>
|
|
</aside><!-- .footer-widget-area -->
|
|
<?php endforeach; ?>
|
|
</div><!-- .inner-wrapper -->
|
|
</div><!-- .container -->
|
|
</div><!-- #footer-widgets -->
|