-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
40 lines (34 loc) · 1.24 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
<?php
/**
* The template for displaying the footer
*
* @package WordPress
* @subpackage BirdFILED
* @since BirdFILED 1.0
*/
?>
<footer id="footer">
<section id="widget-area">
<div class="container">
<?php dynamic_sidebar( 'widget-area-footer' ); ?>
</div>
</section>
<div class="container">
<div class="site-title">
<a href="<?php echo esc_url( home_url( '/' ) ) ; ?>"><strong><?php bloginfo(); ?></strong></a>
<?php if( get_theme_mod( 'birdfield_copyright', true ) ): ?>
<?php printf(__( 'Copyright © %s All Rights Reserved.', 'birdfield' ), birdfield_get_copyright_year() ); ?>
<?php endif; ?>
<?php if( get_theme_mod( 'birdfield_credit', true ) ): ?>
<br>
<span class="generator"><a href="<?php echo esc_url('http://wordpress.org/'); ?>" target="_blank"><?php _e( 'Proudly powered by WordPress', 'birdfield' ); ?></a></span>
<?php printf(__( 'BirdFIELD theme by %sSysbird%s', 'birdfield' ), '<a href="' .esc_url('https://profiles.wordpress.org/sysbird/') .'" target="_blank">', '</a>' ); ?>
<?php endif; ?>
</div>
</div>
<p id="back-top"><a href="#top"><span><?php _e( 'Go Top', 'birdfield' ); ?></span></a></p>
</footer>
</div><!-- wrapper -->
<?php wp_footer(); ?>
</body>
</html>