-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfooter.php
More file actions
42 lines (37 loc) · 1.08 KB
/
footer.php
File metadata and controls
42 lines (37 loc) · 1.08 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
<?php
/**
* The template for rendering the footer.
*
* @package Archetype
* @version 1.0
* @since 1.0
*/
?>
<div id="footer" class="clearfix">
<div id="sub-floor" class="clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="footer-links">
<?php
$options = array(
'container' => false,
'menu_class' => 'nav-justified',
'items_wrap' => '<ul id="%1$s" class="nav nav-menu %2$s">%3$s</ul>',
'fallback_cb' => null,
'depth' => 1,
'walker' => new Archetype_Nav_Walker()
);
wp_nav_menu($options); ?>
</div><!-- /#footer-links -->
<div id="credit">
<?php printf( __( '© %1$s %2$s', 'archetype' ), date( 'Y' ), '<a href="' . home_url() . '">' . get_bloginfo( 'name' ) . '</a>' ); ?>
</div><!-- /#credits -->
</div><!--/col-md-12-->
</div><!-- /row -->
</div><!-- /.container -->
</div><!-- /#sub-floor -->
</div><!-- /#footer -->
<?php wp_footer(); ?>
</body>
</html>