-
Notifications
You must be signed in to change notification settings - Fork 14
/
footer.php
65 lines (60 loc) · 2.59 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
57
58
59
60
61
62
63
64
65
</div>
<!-- /Main Container -->
<!-- Footer -->
<div id="footer">
<div class="container clearfix">
<div class="footer-content">
<!-- Tags -->
<div class="one-fourth tags" style="padding-right: 15px;">
<h5>云标签</h5>
<?php wp_tag_cloud('smallest=12&largest=16&unit=px&number=65&orderby=count&order=RAND');?>
</div>
<!-- /Tags -->
<!-- my_entry_published -->
<div class="one-fourth link-path">
<h5>日志归档</h5>
<ul style="list-style-type: disc;margin-left: 25px;">
<?php wp_get_archives('type=monthly&limit=12&show_post_count=true'); ?>
</ul>
</div>
<!-- /my_entry_published -->
<!-- Contacts -->
<div class="one-fourth link-path">
<h5>友情链接</h5>
<p class="friend-links"><a href="<?php echo get_option("Dchaser_links"); ?>">更多友链 »</a></p>
<ul class="friends-ul">
<?php wp_list_bookmarks('orderby=link_id&categorize=0&title_li='); ?>
</ul>
</div>
<!-- /Contacts -->
<!-- About -->
<div class="one-fourth last link-path">
<h5>关于我们</h5>
<p><?php echo get_option("Dchaser_aboutus"); ?></p>
</div>
<!-- /About -->
</div>
<div class="info clearfix link-path">
<!-- Copyright -->
<ul class="copyright">
<li>Copyright © 2014 <strong><a href="<?php bloginfo('siteurl'); ?>/"><?php bloginfo('name');?></a></strong> . All rights reserved</li>
<li>Powered by Wordpress </li>
<!--
* 尊重原创,请保留版权信息
* 您的支持,将是我更新的动力
-->
<li>Designed by <a href="http://dearb.me" target="_blank">BelinChung</a></li>
<li><a href="http://www.miibeian.gov.cn/" target="_blank" title="备案信息"><?php echo get_option("Dchaser_beian"); ?></a></li>
<li><?php echo get_option("Dchaser_stat"); ?></li>
</ul>
<!-- /Copyright -->
</div>
</div>
</div>
<!-- /Footer -->
<?php
wp_footer();
do_action('gk_show_debug');//显示调试信息
?>
</body>
</html>