-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·59 lines (41 loc) · 1.4 KB
/
footer.php
File metadata and controls
executable file
·59 lines (41 loc) · 1.4 KB
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
/**
* 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 __RT
* @subpackage RT_Theme
* @since 1.0
* @version 1.0
*/
?>
<?php do_action( 'after_layout' ); ?>
</div><!-- #layout -->
</div><!-- .row -->
</div><!-- .container -->
<?php do_action( 'rt_under_content_before' ); ?>
<?php do_action( '__rt_render_widget_area', 'under-content' ); ?>
<?php do_action( 'rt_under_content_after' ); ?>
</div><!-- #content -->
<?php get_template_part( 'template-parts/footer/before-footer' ); ?>
<footer class="site-footer">
<?php do_action( 'before_site_footer' ); ?>
<div class="container">
<?php get_template_part( 'template-parts/footer/footer-row' ); ?>
<?php get_template_part( 'template-parts/footer/footer' ); ?>
<?php get_template_part( 'template-parts/footer/copyright' ); ?>
</div>
<?php do_action( 'rt_site_footer' ); ?>
</footer><!-- footer -->
<?php do_action( 'rt_after_footer' ); ?>
<?php get_template_part( 'template-parts/mobile-menu' ); ?>
<?php get_template_part( 'template-parts/vertical-mega-mobile-menu' ); ?>
<div class="overlay"></div>
<div class="backtotop"><i class="fa fa-arrow-up" aria-hidden="true"></i></div>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>