You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
377 B
18 lines
377 B
<?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>
|
|
|