-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·35 lines (34 loc) · 1.2 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
<?php
/**
* Default Footer
*
* @package WordPress
* @subpackage iShouvik WP
*/
?>
</main> <!-- / #is-site-body .container .clearfix -->
<footer class="site-footer py-3 bg-light border border-white">
<div class="clearfix">
<div class="container">
<?php
if (function_exists('dynamic_sidebar')) {
dynamic_sidebar("footer-col-1");
} ?>
<?php
if (function_exists('dynamic_sidebar')) {
dynamic_sidebar("footer-col-2");
} ?>
<?php
if (function_exists('dynamic_sidebar')) {
dynamic_sidebar("footer-col-3");
} ?>
</div>
<center>
<?php get_template_part( 'content', 'contact_options' ); ?>
<p>© <?php the_time('Y') ?> <a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a> All Rights Reserved </p>
</center>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>