-
Notifications
You must be signed in to change notification settings - Fork 521
/
footer.php
123 lines (122 loc) · 4.55 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
/*
* @Theme Name:WebStack
* @Theme URI:https://github.com/owen0o0/WebStack
* @Author: iowen
* @Author URI: https://www.iowen.cn/
* @Date: 2019-02-22 21:26:02
* @LastEditors: iowen
* @LastEditTime: 2023-04-24 00:42:32
* @FilePath: \WebStack\footer.php
* @Description:
*/
if ( ! defined( 'ABSPATH' ) ) { exit; }
$_icp = '';
if(io_get_option('icp')){
$_icp .= '<a href="https://beian.miit.gov.cn/" target="_blank" rel="link noopener">' . io_get_option('icp') . '</a> ';
}
if ($police_icp = io_get_option('police_icp')) {
if (preg_match('/\d+/', $police_icp, $arr)) {
$_icp .= ' <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=' . $arr[0] . '" target="_blank" class="'.$class.'" rel="noopener">' . $police_icp . '</a> ';
}
}
?>
<footer class="main-footer sticky footer-type-1">
<div class="go-up">
<a href="#" rel="go-top">
<i class="fa fa-angle-up"></i>
</a>
</div>
<div class="footer-inner">
<!---请保留版权说明,谢谢---->
<div class="footer-text">
Copyright © <?php echo date('Y') ?> <?php bloginfo('name'); ?> <?php echo $_icp ?>
Design by <a href="https://github.com/WebStackPage/WebStackPage.github.io" target="_blank"><strong>Webstack</strong></a> Modify by <a href="https://github.com/owen0o0/WebStack" target="_blank"><strong>iowen</strong></a>
</div>
<!---请保留版权说明,谢谢---->
</div>
</footer>
</div>
</div>
<?php if (is_home() || is_front_page()): ?>
<script type="text/javascript">
$(document).ready(function() {
setTimeout(function () {
if($('a.smooth[href="'+window.location.hash+'"]')[0]){
$('a.smooth[href="'+window.location.hash+'"]').click();
} else if(window.location.hash != ''){
$("html, body").animate({
scrollTop: $(window.location.hash).offset().top - 80
}, {
duration: 500,
easing: "swing"
});
}
}, 300);
$(document).on('click', '.has-sub', function(){
var _this = $(this)
if(!$(this).hasClass('expanded')) {
setTimeout(function(){
_this.find('ul').attr("style","")
}, 300);
} else {
$('.has-sub ul').each(function(id,ele){
var _that = $(this)
if(_this.find('ul')[0] != ele) {
setTimeout(function(){
_that.attr("style","")
}, 300);
}
})
}
})
$('.user-info-menu .hidden-xs').click(function(){
if($('.sidebar-menu').hasClass('collapsed')) {
$('.has-sub.expanded > ul').attr("style","")
} else {
$('.has-sub.expanded > ul').show()
}
})
$("#main-menu li ul li").click(function() {
$(this).siblings('li').removeClass('active'); // 删除其他兄弟元素的样式
$(this).addClass('active'); // 添加当前元素的样式
});
$("a.smooth").click(function(ev) {
ev.preventDefault();
if($("#main-menu").hasClass('mobile-is-visible') != true)
return;
public_vars.$mainMenu.add(public_vars.$sidebarProfile).toggleClass('mobile-is-visible');
ps_destroy();
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top - 80
}, {
duration: 500,
easing: "swing"
});
});
return false;
});
var href = "";
var pos = 0;
$("a.smooth").click(function(e) {
e.preventDefault();
if($("#main-menu").hasClass('mobile-is-visible') === true)
return;
$("#main-menu li").each(function() {
$(this).removeClass("active");
});
$(this).parent("li").addClass("active");
href = $(this).attr("href");
pos = $(href).position().top - 100;
$("html,body").animate({
scrollTop: pos
}, 500);
});
</script>
<?php endif; ?>
<?php wp_footer(); ?>
<!-- 自定义代码 -->
<?php echo io_get_option('code_2_footer');?>
<!-- end 自定义代码 -->
</body>
</html>