-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter-widget.php
59 lines (49 loc) · 1.99 KB
/
footer-widget.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
if ( is_home() && 'post' == get_post_type() )
// if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) )
// if ( is_active_sidebar( 'footer-1' ) )
{
?>
<div id="footer-widget" class="footer-widget row m-0">
<div class="container">
<div class="row">
<?php if ( is_active_sidebar( 'footer-2' )) : ?>
<div class="col-12 col-lg"><?php dynamic_sidebar( 'footer-2' ); ?></div>
<?php endif; ?>
</div>
</div>
</div>
<?php
}
if ( is_single() && 'post' == get_post_type() )
// if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) )
// if ( is_active_sidebar( 'footer-1' ) )
{
?>
<div id="footer-widget" class="footer-widget row m-0">
<div class="container">
<div class="row">
<?php if ( is_active_sidebar( 'footer-1' )) : ?>
<div class="col-12 col-lg"><?php dynamic_sidebar( 'footer-1' ); ?></div>
<?php endif; ?>
</div>
</div>
</div>
<?php
}
if ( is_archive() && 'post' == get_post_type() )
// if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) )
// if ( is_active_sidebar( 'footer-1' ) )
{
?>
<div id="footer-widget" class="footer-widget row m-0">
<div class="container">
<div class="row">
<?php if ( is_active_sidebar( 'footer-2' )) : ?>
<div class="col-12 col-lg"><?php dynamic_sidebar( 'footer-2' ); ?></div>
<?php endif; ?>
</div>
</div>
</div>
<?php
}