-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
29 lines (27 loc) · 1.03 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package PepBiz
*/
?>
</div><!-- #content -->
<div id="footer-widgets">
<?php if( is_active_sidebar( 'footer-1' ) ) dynamic_sidebar( 'footer-1' ); ?>
</div>
</div><!-- #page -->
<footer id="colophon" class="site-footer" role="contentinfo">
<nav id="footer-menu">
<?php wp_nav_menu( array( 'theme_location' => 'footer-menu', 'depth'=>'1') ); ?>
</nav>
<div class="site-info">
<?php echo qtrans_generateLanguageSelectCode('both'); ?>
<!-- <?php do_action( 'pepbiz_credits' ); ?>
<?php _e('Powered by', 'pepbiz'); ?> <a href="//wordpress.org" title="WordPress" target="_blank"><?php _e('WordPress', 'pepbiz'); ?></a> &
<a href="<?php echo esc_url('http://pepthemes.com'); ?>" title="<?php _e('PepThemes', 'pepbiz'); ?>" target="_blank"><?php _e('PepThemes', 'pepbiz'); ?></a>. -->
</div><!-- .site-info -->
</footer><!-- #colophon -->
<?php wp_footer(); ?></body>
</html>