-
Notifications
You must be signed in to change notification settings - Fork 7
/
footer.php
46 lines (43 loc) · 1.43 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package coletivo
*/
?>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php $coletivo_btt_disable = get_theme_mod( 'coletivo_btt_disable' ); ?>
<div class="site-info">
<div class="container">
<?php if ( $coletivo_btt_disable != '1' ) : ?>
<div class="btt">
<a class="back-top-top" href="#page" title="<?php echo esc_html__('Back To Top', 'coletivo') ?>"><i class="fa fa-angle-double-up wow flash" data-wow-duration="2s"></i></a>
</div><!-- btt -->
<?php endif; ?>
<?php
/**
* Hooked: coletivo_footer_site_info
*
* @see coletivo_footer_site_info
*/
do_action( 'coletivo_footer_site_info' );
?>
</div><!-- container -->
</div><!-- .site-info -->
</footer><!-- #colophon -->
<?php
/**
* Hooked: coletivo_site_footer
*
* @see coletivo_site_footer
*/
do_action( 'coletivo_site_end' );
?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>