angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

footer-widgets.php (528B)


      1 <?php
      2 /**
      3  * Displays the footer widget area
      4  *
      5  * @package WordPress
      6  * @subpackage Twenty_Nineteen
      7  * @since Twenty Nineteen 1.0
      8  */
      9 
     10 if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
     11 
     12 	<aside class="widget-area" role="complementary" aria-label="<?php esc_attr_e( 'Footer', 'twentynineteen' ); ?>">
     13 		<?php
     14 		if ( is_active_sidebar( 'sidebar-1' ) ) {
     15 			?>
     16 					<div class="widget-column footer-widget-1">
     17 					<?php dynamic_sidebar( 'sidebar-1' ); ?>
     18 					</div>
     19 				<?php
     20 		}
     21 		?>
     22 	</aside><!-- .widget-area -->
     23 
     24 <?php endif; ?>