-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
32 lines (28 loc) · 852 Bytes
/
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package first-edition
*/
$footer_text = get_theme_mod( 'first_edition_footer_text' );
?>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php if ( '' != $footer_text ) {
echo $footer_text;
} else {
printf( esc_html__( '%1$s was made with %2$s for %3$s', 'first-edition' ),
'<a href="http://designsimply.com/wordpress/theme/first-edition/" rel="author">First Edition WordPress Theme</a>',
'<a href="http://underscores.me/">Underscores.me</a>',
'<a href="http://wordpress.org/">WordPress</a>'
);
} ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #content -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>