-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
footer.php
48 lines (44 loc) · 1.47 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
<?php
/* 获取选项参数 */
// 侧边备案号展示
if (get_option('king_icp_display') && !!is_home() && get_option('king_icp_display_bottom') !== '开启') {
$icpDisplay = true;
echo '
<div class="icp-div">
<a href="http://beian.miit.gov.cn/" target="_blank">' . get_option('king_icp_display') . '</a>
</div>
';
}
if (get_option('king_icp_display_bottom') == '开启' && !!is_home() && get_option('king_icp_display')) {
//底部备案号展示
$icpDisplayBottom = true;
} else {
$icpDisplayBottom = false;
}
echo '
<footer class="footer reveal" style="' . (wp_is_mobile() ? 'display:none;' : '') . '">
<p>Copyright © ' . date('Y') . ' ' . get_bloginfo('name') . ' · Theme Tony | Made with <i class="czs-heart tonys-love"></i> by <a href="https://www.ouorz.com" target="_blank">TonyHe</a>' . ($icpDisplayBottom ? (' | ' . get_option('king_icp_display')) : '') . '</p>
</footer>
';
?>
<!-- 回到顶部按钮初始化 -->
<script type="text/javascript">
$(document).ready(function() {
$.goup({
trigger: 100,
bottomOffset: 30, //距底部偏移量
locationOffset: 30, //距右部偏移量
});
});
</script>
<!-- 回到顶部按钮初始化 -->
<!-- Bootstrap 资源引入 -->
<script src="https://static.ouorz.com/bootstrap.min.js"></script>
<!-- Bootstrap 资源引入 -->
<!-- 承接头部区块 -->
</div>
</div>
</main>
</body>
</html>
<!-- 承接头部区块 -->