-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
49 lines (36 loc) · 1.04 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
<?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 Blogasm
*/
?>
</div><!-- #content -->
<div class="footer-separator"></div>
<footer class="site-footer">
<footer class="site-footer">
<?php
/**
* Hook - blogasm_action_footer.
*
* @hooked blogasm_add_footer_widgets - 10
* @hooked blogasm_add_footer_bar - 20
*/
do_action( 'blogasm_action_footer' );
?>
</footer><!-- .site-footer -->
</footer><!-- .site-footer -->
</div><!-- #page -->
<div class="back-to-top d-none d-lg-flex align-items-center">
<div class="bt-text">
<?php echo esc_html( 'Back to Top', 'blogasm' ); ?>
</div><!-- .bt-text -->
<span class="d-block pt-icon icon-arrow-right"></span>
</div><!-- .back-to-top -->
<?php wp_footer(); ?>
</body>
</html>