blob: eaef7671c32ffde5ca74ff51f43f74957910f3bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
/**
* Sidebar setup for footer full.
*
* @package understrap
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
$container = get_theme_mod( 'understrap_container_type' );
?>
<?php if ( is_active_sidebar( 'footerfull' ) ) : ?>
<!-- ******************* The Footer Full-width Widget Area ******************* -->
<div class="wrapper footer" id="wrapper-footer-full">
<div class="<?php echo esc_attr( $container ); ?>" id="footer-full-content" tabindex="-1">
<div class="row">
<?php dynamic_sidebar( 'footerfull' ); ?>
</div>
</div>
</div><!-- #wrapper-footer-full -->
<?php endif; ?>
|