version 4.13.0
This commit is contained in:
18
sidebar-footer.php
Normal file
18
sidebar-footer.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?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>
|
Reference in New Issue
Block a user