forked from Licoy/wordpress-theme-puock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·60 lines (60 loc) · 2.61 KB
/
footer.php
File metadata and controls
executable file
·60 lines (60 loc) · 2.61 KB
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
<!-- 消息提示框 -->
<div class="modal fade" id="infoToast" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title puock-text" id="infoToastTitle"></h5>
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true"><i class="fa fa-close t-md"></i></span>
</button>
</div>
<div class="modal-body puock-text t-md" id="infoToastText">
</div>
</div>
</div>
</div>
<?php if (pk_is_checked('use_post_menu')) get_template_part('templates/module', 'menus') ?>
<!--返回顶部和底部-->
<div id="rb-float-actions">
<?php echo apply_filters('pk_rb_float_actions','') ?>
<div data-to="top" class="p-block"><i class="fa fa-arrow-up puock-text"></i></div>
<div data-to="bottom" class="p-block"><i class="fa fa-arrow-down puock-text"></i></div>
</div>
<footer id="footer">
<div class="container">
<div class="row row-cols-md-1">
<?php if (pk_is_checked('footer_about_me_open')): ?>
<div class="col-md-6">
<div><span class="t-md pb-2 d-inline-block border-bottom border-primary"><i
class="fa-regular fa-bell"></i> <?php echo pk_get_option('footer_about_me_title', '') ?></span>
</div>
<p class="mt20 t-md"><?php echo pk_get_option('footer_about_me', '') ?></p>
</div>
<?php endif; ?>
<?php if (pk_is_checked('footer_copyright_open')): ?>
<div class="col-md-6">
<div><span class="t-md pb-2 d-inline-block border-bottom border-primary"><i
class="fa-regular fa-copyright"></i> <?php echo pk_get_option('footer_copyright_title', '') ?></span>
</div>
<p class="mt20 t-md"><?php echo pk_get_option('footer_copyright', '') ?></p>
</div>
<?php endif; ?>
</div>
</div>
<div class="mt20 text-center t-md">
<div class="info">
<?php echo apply_filters('pk_footer_info','') ?>
</div>
</div>
</div>
</footer>
</div>
<div id="gt-validate-box"></div>
<?php get_template_part('inc/metas') ?>
<?php wp_footer(); ?>
<?php if (!empty(pk_get_option('tj_code_footer', ''))): ?>
<?php echo pk_get_option('tj_code_footer', ''); ?>
<?php endif; ?>
<?php pk_debug_print_sql_list(); ?>
</body>
</html>