-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathfooter.php
More file actions
45 lines (40 loc) · 945 Bytes
/
footer.php
File metadata and controls
45 lines (40 loc) · 945 Bytes
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
<?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 customify
*/
?> <?php do_action( 'customify/main/after' ); ?>
</main><!-- #main -->
<?php do_action( 'customify/sidebars' ); ?>
</div><!-- #.customify-grid -->
</div><!-- #.customify-container -->
</div><!-- #content -->
<?php
/**
* Hook before site content
*
* @since 0.2.2
*/
do_action( 'customify/after-site-content' );
do_action( 'customify/site-end/before' );
if ( ! customify_is_e_theme_location( 'footer' ) ) {
/**
* Site end
*
* @hooked customify_customize_render_footer - 10
*
* @see customify_customize_render_footer
*/
do_action( 'customify/site-end' );
}
do_action( 'customify/site-end/after' );
?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>