You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
377 B
PHTML
19 lines
377 B
PHTML
7 months ago
|
<?php
|
||
|
$et_active_sidebars = et_divi_footer_active_sidebars();
|
||
|
if ( $et_active_sidebars === false ) {
|
||
|
return;
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<div class="container">
|
||
|
<div id="footer-widgets" class="clearfix">
|
||
|
<?php
|
||
|
foreach ( $et_active_sidebars as $footer_sidebar ) :
|
||
|
echo '<div class="footer-widget">';
|
||
|
dynamic_sidebar( $footer_sidebar );
|
||
|
echo '</div>';
|
||
|
endforeach;
|
||
|
?>
|
||
|
</div>
|
||
|
</div>
|