footer-widget.php (298B)
1 <?php 2 /** 3 * this template parts for displaying footer widget area 4 * @sicne 1.0.0 5 * */ 6 if (!is_active_sidebar('footer-widget')){ 7 return; 8 } 9 ?> 10 <div class="footer-top"> 11 <div class="container"> 12 <div class="row"> 13 <?php dynamic_sidebar('footer-widget');?> 14 </div> 15 </div> 16 </div>