-
Notifications
You must be signed in to change notification settings - Fork 11
/
footer.php
executable file
·47 lines (46 loc) · 1.39 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package OKFNWP
*/
?>
</div><!-- / .row -->
</div></main>
<?php get_template_part('inc/mailing-bar'); ?>
<footer class="footer"><div class="container">
<div class="row">
<div class="col-md-4 copyright">
<p><a href="https://github.com/okfn/wordpress-theme/" title="Site source code"><i class="fa fa-code fa-lg fa-fw"></i> Source code</a> available under the MIT license.</p>
<img src="<?php echo get_template_directory_uri(); ?>/assets/img/cc-by-sa.png" alt="Creative Commons Licence">
</div>
<div class="col-md-offset-2 col-md-3">
<?php
$menu = get_menu_by_location('footer-menu-1');
if ($menu) {
wp_nav_menu(array(
'theme_location' => 'footer-menu-1',
'items_wrap' => '<h4>' . esc_html($menu->name) . '</h4><nav><ul>%3$s</ul></nav>'
));
}
?>
</div>
<div class="col-md-3">
<?php
$menu = get_menu_by_location('footer-menu-2');
if ($menu) {
wp_nav_menu(array(
'theme_location' => 'footer-menu-2',
'items_wrap' => '<h4>' . esc_html($menu->name) . '</h4><nav><ul>%3$s</ul></nav>'
));
}
?>
</div>
<div class="col-md-3"></div>
</div>
</div></footer>
<?php wp_footer(); ?>
</body>
</html>