forked from Jonnyauk/Wonderflux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
31 lines (26 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
<?php
/**
* Wonderflux footer template
*
* Customise this in your child theme by:
* - Using hooks and your own functions
* - Using the 'footer-content' template part 'footer-content-404.php' or 'footer-content.php' (fallback if location specific file not available)
* - Copying this file to your child theme and customising - it will over-ride this file
*
* @package Wonderflux
*/
wffooter_before_wrapper(); //WF display hook
wffooter_before_container(); //WF display hook
echo apply_filters( 'wflux_layout_footer_container_open', '<div class="container" id="footer">' );
wffooter_before_content(); //WF display hook
wfx_get_template_part('part=footer-content'); // Setup all location aware template parts
wffooter_after_content(); //WF display hook
echo apply_filters( 'wflux_layout_footer_container_close', '</div>' );
wffooter_after_container(); //WF display hook
wffooter_after_wrapper(); //WF display hook
wfbody_after_wrapper(); //WF display hook
wf_footer(); //WF display hook
wp_footer(); //Standard WordPress display hook
?>
</body>
</html>