forked from arnabwahid/wordpress-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
34 lines (29 loc) · 1.39 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
<?php if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} ?>
</div> <!-- end #container -->
<footer class="mainfooter" role="contentinfo">
<div class="container">
<div id="inner-footer" class="clearfix">
<hr />
<div id="widget-footer" class="clearfix row">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer1') ) : ?>
<?php endif; ?>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer2') ) : ?>
<?php endif; ?>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer3') ) : ?>
<?php endif; ?>
</div>
<nav class="clearfix">
<?php wpbo_bootstrap_footer_links(); // Adjust using Menus in Wordpress Admin ?>
</nav>
<p class="pull-right">
<?php _e('Theme made by','wpbo');?> <a href="<?php echo esc_url( __('http://www.closemarketing.net/', 'wpbo'));?>" target="_blank" title="WordPress Web Design in Granada" rel="nofollow">Closemarketing</a>
</p>
<p class="attribution">© <?php bloginfo('name'); ?></p>
</div> <!-- end #inner-footer -->
</div> <!-- end #container -->
</footer> <!-- end footer -->
<?php wp_footer(); // js scripts are inserted using this function ?>
</body>
</html>