-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
32 lines (29 loc) · 1.16 KB
/
footer.php
File metadata and controls
32 lines (29 loc) · 1.16 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
<?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 CoderDojo
* @subpackage CoderDojo
* @since 1.0.0
*/
wp_footer();?>
<footer id="footer" class="site-footer">
<div id="footer-wrapper" class="wrapper spacer">
<?php get_template_part('template-parts/site/branding'); ?>
<?php get_template_part('template-parts/footer/text'); ?>
<?php get_template_part('template-parts/footer/social-links'); ?>
<div id="footer-menus">
<?php get_template_part('template-parts/footer/menu-one'); ?>
<?php get_template_part('template-parts/footer/menu-two'); ?>
<?php get_template_part('template-parts/footer/menu-three'); ?>
<?php get_template_part('template-parts/footer/menu-four'); ?>
</div>
<?php get_template_part('template-parts/footer/address'); ?>
</div>
</footer>
</body>
</html>