-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
61 lines (48 loc) · 1.17 KB
/
footer.php
File metadata and controls
61 lines (48 loc) · 1.17 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Masonry
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php if ( has_nav_menu( 'footer' ) ) : ?>
<?php
wp_nav_menu(
array(
'fallback_cb' => false,
'container_class' => 'footer-navigation',
'theme_location' => 'footer',
)
);
?>
<?php endif; ?>
<div class="site-credits">
<?php
printf(
// translators: themen name and creator (company)
esc_html__( 'Theme: %1$s by %2$s.', 'masonry' ),
'Masonry',
'<a esc_url( href="http://devrix.com/themes/masonry/ )" title="Masonry WordPress Theme" rel="designer">DevriX</a>'
);
?>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'masonry' ) ); ?>">
<?php
printf(
// translators: WordPress power
esc_html__( 'Proudly powered by %s', 'masonry' ),
'WordPress'
);
?>
</a>
</div><!-- .site-credits -->
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>