-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
50 lines (40 loc) · 1.68 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
<?php
/**
* @package Viral
*/
?>
</div><!-- #content -->
<footer id="vl-colophon" class="site-footer" <?php echo viral_get_schema_attribute('footer'); ?>>
<?php if (is_active_sidebar('viral-footer1') || is_active_sidebar('viral-footer2') || is_active_sidebar('viral-footer3') || is_active_sidebar('viral-footer4')) { ?>
<div class="vl-top-footer">
<div class="vl-container">
<div class="vl-top-footer-inner vl-clearfix">
<div class="vl-footer-1 vl-footer-block">
<?php dynamic_sidebar('viral-footer1') ?>
</div>
<div class="vl-footer-2 vl-footer-block">
<?php dynamic_sidebar('viral-footer2') ?>
</div>
<div class="vl-footer-3 vl-footer-block">
<?php dynamic_sidebar('viral-footer3') ?>
</div>
<div class="vl-footer-4 vl-footer-block">
<?php dynamic_sidebar('viral-footer4') ?>
</div>
</div>
</div>
</div>
<?php } ?>
<div class="vl-bottom-footer">
<div class="vl-container">
<div class="vl-site-info">
<?php echo 'WordPress Theme | <a title="' . esc_html__('Download Viral', 'viral') . '" href="https://hashthemes.com/wordpress-theme/viral/" target="_blank">Viral</a> by HashThemes'; ?>
</div><!-- .site-info -->
</div>
</div>
</footer>
</div>
<div id="vl-back-top" class="vl-hide"><i class="mdi-chevron-up"></i></div>
<?php wp_footer(); ?>
</body>
</html>