1234567891011121314151617 |
- <?php
- /**
- * The sidebar containing the main widget area.
- *
- * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
- *
- * @package popper
- */
- if ( ! is_active_sidebar( 'sidebar-foooter' ) ) {
- return;
- }
- ?>
- <div id="tertiary" class="widget-area clear" role="complementary">
- <?php dynamic_sidebar( 'sidebar-foooter' ); ?>
- </div><!-- #secondary -->
|