-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
84 lines (77 loc) · 2.32 KB
/
footer.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<div class="totop"><div class="gototop"><div class="arrowgototop"></div></div></div>
<!-- footer-->
<?php if(is_front_page()){ ?>
<div class="sidebars-wrap bottom">
<div class="sidebars">
<div class="sidebar-fullwidth">
<?php if (is_active_sidebar('anariel-sidebar-footer-fullwidth' )) { ?>
<?php dynamic_sidebar( 'anariel-sidebar-footer-fullwidth' ); ?>
<?php } ?>
</div>
<div class="sidebar-left-right">
<div class="left-sidebar">
<?php if (is_active_sidebar('anariel-sidebar-footer-left' )) { ?>
<?php dynamic_sidebar( 'anariel-sidebar-footer-left' ); ?>
<?php } ?>
</div>
<div class="right-sidebar">
<?php if (is_active_sidebar('anariel-sidebar-footer-right' )) { ?>
<?php dynamic_sidebar( 'anariel-sidebar-footer-right' ); ?>
<?php } ?>
</div>
</div>
</div>
</div>
<?php } ?>
<footer>
<div id="footer">
<?php
if(anariel_globals('use_block3') && anariel_globals('block3_username') && function_exists( 'display_instagram' ) ){ ?>
<div class="block3">
<a href="<?php anariel_security(anariel_data('block3_url')) ?>" target="_blank"></a>
</div>
<?php
$atts = array('id' => esc_attr(anariel_data('block3_username')), 'cols' => 6, 'imageres' => 'full', 'num' => 6);
echo display_instagram($atts);
}
?>
<div id="footerinside">
<!--footer widgets-->
<div class="block_footer_text">
<p><?php
if(isset($anariel_data['block_footer_text'])){
anariel_security($anariel_data['block_footer_text']); }?></p>
</div>
<div class="footer_widget">
<div class="footer_widget1">
<?php if (is_active_sidebar('anariel_footer1' )) { ?>
<?php dynamic_sidebar( 'anariel_footer1' ); ?>
<?php } ?>
</div>
<div class="footer_widget2">
<?php if (is_active_sidebar('anariel_footer2' )) { ?>
<?php dynamic_sidebar( 'anariel_footer2' ); ?>
<?php } ?>
</div>
<div class="footer_widget3">
<?php if (is_active_sidebar('anariel_footer3' )) { ?>
<?php dynamic_sidebar( 'anariel_footer3' ); ?>
<?php } ?>
</div>
</div>
</div>
</div>
<!-- footer bar at the bootom-->
<div id="footerbwrap">
<div id="footerb">
<div class="lowerfooter">
<div class="copyright">
<?php anariel_security(anariel_data('copyright')); ?>
</div>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>