-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
93 lines (76 loc) · 1.13 KB
/
footer.php
File metadata and controls
93 lines (76 loc) · 1.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after
*
* @package Xpro
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* xpro_primary_content_bottom hook.
*
* @since 1.0.0
*
* @hooked xpro_primary_content_bottom - 10
*/
do_action( 'xpro_primary_content_bottom' );
/**
* xpro_content_after hook.
*
* @since 1.0.0
*
* @hooked xpro_content_after - 10
*/
do_action( 'xpro_content_after' );
/**
* xpro_footer_before hook.
*
* @since 1.0.0
*
* @hooked xpro_footer_before - 10
*/
do_action( 'xpro_footer_before' );
/**
* xpro_footer hook.
*
* @since 1.0.0
*
* @hooked xpro_footer - 10
*/
do_action( 'xpro_footer' );
/**
* xpro_footer_after hook.
*
* @since 1.0.0
*
* @hooked xpro_footer_after - 10
*/
do_action( 'xpro_footer_after' );
/**
* xpro_scroll_top hook.
*
* @since 1.0.0
*
* @hooked xpro_scroll_top - 10
*/
do_action( 'xpro_scroll_top' );
?>
</div>
<?php
/**
* xpro_body_top hook.
*
* @since 1.0.0
*/
do_action( 'xpro_body_bottom' );
/**
* wp Footer.
*
* @since 1.0.0
*/
wp_footer();
?>
</body>
</html>