-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
77 lines (69 loc) · 1.53 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
<?php
/**
* Site footer template.
*
* @package Responsive_Framework
*/
?>
<?php
/**
* Fires immediately before the inner closing content container.
*
* @since 2.0.0
*/
do_action( 'r_before_closing_container_inner' );
?>
</div><!-- .content-container -->
<?php
/**
* Fires immediately after the inner closing content container.
*
* @since 2.0.0
*/
do_action( 'r_after_closing_container_inner' );
/**
* Fires immediately before the outer closing content container.
*
* @since 2.0.0
*/
do_action( 'r_before_closing_container_outer' );
?>
</main><!-- .content -->
<?php
/**
* Fires immediately after the outer closing content container.
*
* @since 2.0.0
*/
do_action( 'r_after_closing_container_outer' );
/**
* Fires immediately before the closing wrapper div.
*
* @since 2.0.0
*/
do_action( 'r_before_closing_wrapper' );
?>
</div><!-- .wrapper -->
<?php
/**
* Fires immediately after the closing wrapper div.
*
* @since 2.0.0
*/
do_action( 'r_after_closing_wrapper' );
?>
<footer class="site-footer <?php responsive_extra_footer_classes(); ?>" role="contentinfo">
<?php get_template_part( 'template-parts/footer-branding' ); ?>
<?php get_template_part( 'template-parts/footer-menus' ); ?>
</footer>
<?php wp_footer(); ?>
<?php
/**
* Fires immediately before the closing body tag.
*
* @since 2.0.0
*/
do_action( 'r_before_closing_body_tag' );
?>
</body>
</html>