-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfooter.php
26 lines (23 loc) · 1.05 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "site-content" div and all content after.
*
* @package WordPress
* @subpackage Pure
* @since Pure 1.0
*/
?>
</div><!-- .row -->
</div><!-- .site-content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info container">
<div class="copyright">© <?php echo pure_copyright(2015) ?> <?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>. 版权所有.<?php pure_icp_number(function($icp) {printf(" %s.", $icp); }) ?> 基于 <a class="copyright" href="<?php echo esc_url( __( 'https://wordpress.org/', 'pure' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'pure' ); ?>">WordPress</a> 搭建, 采用 <a class="copyright" href="http://www.icodechef.com" title="编程小厨">Pure</a> 作为主题
</div>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- .site -->
<?php wp_footer(); ?>
</body>
</html>