Files
Landing/wp-content/themes/upstudy/template-parts/footer/widgets-1.php
T
2026-04-23 04:33:43 +03:30

22 lines
580 B
PHP

<?php
/**
* Displays footer widgets if assigned
*
* @package Upstudy
* Version: 1.0.0
*/
?>
<div class="footer-top">
<div class="upstudy-container">
<div class="upstudy-row footer-wrap">
<div class="upstudy-col-lg-12 upstudy-col-md-12 <?php if ( is_active_sidebar( 'footer-1' ) ) : echo esc_attr( 'sidebar-yes' ); else : echo esc_attr( 'sidebar-no' ); endif; ?>">
<div class="footer-column">
<?php dynamic_sidebar( 'footer-1' ); ?>
</div>
</div>
</div>
</div>
</div>