-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
56 lines (48 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Creativeily
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="footer-wrapmain">
<div class="footer-column-wrapper">
<?php if ( is_active_sidebar( 'footerwidget-1' ) ) : ?>
<div class="footer-column-three footer-column-left">
<?php dynamic_sidebar( 'footerwidget-1' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footerwidget-2' ) ) : ?>
<div class="footer-column-three footer-column-middle">
<?php dynamic_sidebar( 'footerwidget-2' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footerwidget-3' ) ) : ?>
<div class="footer-column-three footer-column-right">
<?php dynamic_sidebar( 'footerwidget-3' ); ?>
</div>
<?php endif; ?>
</div>
<div class="site-info">
©<?php echo date('Y'); ?> <?php bloginfo( 'name' ); ?>
<!-- Delete below lines to remove copyright from footer -->
<span class="footer-info-right">
<?php echo __(' | Created by ', 'creativeily') ?>
<a href="<?php echo esc_url('https://github.com/whisper2u', 'creativeily'); ?>" rel="nofollow noopener" ><?php echo __('whisper2u', 'creativeily') ?></a>
<?php echo __(' | ', 'creativeily') ?>
<a href="<?php echo esc_url('http://localhost/wp-admin/', 'creativeily'); ?>" rel="nofollow noopener" ><?php echo __('登录', 'creativeily') ?></a>
</span>
<!-- Delete above lines to remove copyright from footer -->
</div>
</footer><!-- #colophon -->
</div><!-- .site-content-contain -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>