wordcamp-bristol-2019/wp-content/themes/twentynineteen-tailwindcss/template-parts/footer/footer-widgets.php

25 lines
506 B
PHP
Raw Normal View History

2019-03-27 18:21:37 +00:00
<?php
/**
* Displays the footer widget area
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since 1.0.0
*/
if ( is_active_sidebar( 'tw-sidebar' ) ) : ?>
<aside class="widget-area" role="complementary" aria-label="<?php esc_attr_e( 'Footer', 'twentynineteen' ); ?>">
<?php
if (is_active_sidebar('tw-sidebar')) {
?>
<div class="flex flex-wrap -mx-6">
<?php dynamic_sidebar('tw-sidebar'); ?>
</div>
<?php
}
?>
</aside><!-- .widget-area -->
<?php endif; ?>