-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfooter.php
More file actions
29 lines (29 loc) · 808 Bytes
/
footer.php
File metadata and controls
29 lines (29 loc) · 808 Bytes
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
<footer id="footer">
<div class="container">
<?php if(!wp_is_mobile()){ ?>
<div class="widget-area row hiddex-xs">
<?php if(!theme_cache::dynamic_sidebar('widget-area-footer')){ ?>
<div class="col-xs-12">
<div class="panel">
<div class="panel-body">
<div class="page-tip">
<?= status_tip('info', ___('Please set some widgets in footer.'));?>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
<?php } ?>
<p class="footer-meta copyright text-center">
<?php
if(class_exists('theme_user_code')){
echo theme_user_code::get_frontend_footer_code();
}
?>
</p>
</div>
</footer>
<a href="#" class="back-to-top" title="<?= ___('Back to top');?>"><i class="fa fa-arrow-up fa-3x"></i></a>
<?php wp_footer();?>
</body></html>