-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
82 lines (80 loc) · 2.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
</div>
<!--columns-->
</div>
<!--wrap-->
<footer id="footer" class="footer">
<div class="container">
<?php if (1) { ?>
<div class="columns">
<div class="column is-narrow">
<div class="logo is-size-5">
<?php echo stripslashes(wndt_get_config('logo')); ?>
<a href="<?php echo get_option('home'); ?>"><?php bloginfo('name'); ?></a>
</div>
</div>
<div class="column">
<?php echo wndt_list_bookmarks(); ?>
</div>
<div class="column content">
<h3>文档·资讯</h3>
<ul>
<?php
foreach (get_terms(['taxonomy' => 'category', 'parent' => 0, 'orderby' => 'count']) as $category) {
$class = is_category($category->term_id) ? ' class="is-active"' : '';
echo '<li' . $class . '><a href="' . get_term_link($category, 'category') . '">' . $category->name . '</a></li>';
}
?>
</ul>
</div>
<div class="column is-narrow content">
<h3>联系方式</h3>
<!-- <p>电话:13075490410</p> -->
<p>邮件:[email protected]</p>
<p>地址:重庆市南岸区三块石科技有限公司</p>
</div>
</div>
<?php } ?>
<p id="beian" class=" has-text-centered is-size-7">
<?php
$icp = wndt_get_config('icp');
$wangan = wndt_get_config('wangan');
if ($icp) {
echo '<a target="_blank" rel="nofollow" href="http://beian.miit.gov.cn">' . $icp . '</a> ';
}
if ($wangan) {
echo '<a target="_blank" rel="nofollow" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=' . $wangan . '">';
echo '<img src="' . WNDT_URL . '/static/images/ghs.png" alt="公安备案">网安备' . $wangan;
echo '</a>';
}
?>
</p>
<p id="copyright" class="has-text-centered is-size-7">
©2013 - <?php echo date('Y'); ?>
<?php bloginfo('name') ?> Copyright
</p>
<p class="has-text-centered">
<?php echo 'Files:' . count(get_included_files()); ?> -
<?php echo 'Queries:' . get_num_queries(); ?> - <?php echo timer_stop(); ?> -
<?php echo number_format(memory_get_peak_usage() / 1024 / 1024, 2); ?>
</p>
</div>
</footer>
<!-- 移动悬浮导航栏 -->
<div class="navbar is-fixed-bottom is-hidden">
<div class="columns has-text-centered is-mobile is-size-7 is-marginless is-paddingless">
<div class="column is-marginless" onclick="wnd_ajax_modal('wndt_user_favorite_list','')">
<span class="icon"><i class="fas fa-heart"></i></span>收藏
</div>
<div class="column is-marginless play-button" onclick="wndt_play('#audio-player')">
<span class="icon"><i class="fas fa-play"></i></span>
</div>
<div class="column is-marginless" onclick="wnd_ajax_modal('wndt_join_vip','')">
<span class="icon"><i class="fab fa-vimeo-v"></i></span>VIP
</div>
</div>
</div>
<?php wp_footer(); ?>
<?php echo Wndt\Module\Wndt_Sidebar_Menu::render(); ?>
<div class="is-hidden"><?php echo stripslashes(wndt_get_config('statistical_code')); ?></div>
</body>
</html>