forked from zhw2590582/Teahouse-Wordpress-Theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
30 lines (28 loc) · 1018 Bytes
/
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
</div><!-- main -->
</div><!-- wrapper -->
<div class="clearfix"></div>
<?php if ( is_active_sidebar(2) ) { ?>
<div id="my-widget">
<div class="widgets">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Right-widget') ) : else : ?>
<?php endif; ?>
</div>
</div>
<?php } ?>
<div class="copyright">© <?php echo date("Y"); ?> <a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a> | <?php bloginfo('description'); ?> | <a href="http://zhw-island.com/">Theme by <strong>Teahouse</strong></a></div>
</div>
<?php if ( is_active_sidebar(3) ) { ?>
<div id="my-sidebar" class="sb-slidebar sb-left nano">
<div class="widgets">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Left-widget') ) : else : ?>
<?php endif; ?>
</div>
</div>
<?php } ?>
<?php wp_footer(); ?>
<script>
NProgress.start();
setTimeout(function() { NProgress.done(); jQuery('.fade').removeClass('out'); }, 1000);
</script>
</body>
</html>