-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
38 lines (30 loc) · 953 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
31
32
33
34
35
36
37
38
<?php
/**
* Footer
*
* @package Status
* @since 1.0
*/
?>
</div>
</div>
<?php do_action( 'bp_after_container' ) ?>
<?php do_action( 'bp_before_footer' ) ?>
<div id="footer-wrapper">
<footer class="bottom">
<?php if(has_nav_menu('footer')): ?>
<nav id="secondary-nav">
<?php wp_nav_menu(array('sort_column' => 'menu_order', 'container' => '', 'fallback_cb' => '', 'theme_location' => 'footer')) ?>
</nav><!-- / #footer-nav -->
<?php endif; ?>
<div id="site-generator" role="contentinfo">
<?php do_action( 'bp_dtheme_credits' ) ?>
<p><?php printf( __( 'Proudly powered by <a href="%1$s">WordPress</a> and <a href="%2$s">BuddyPress</a>.', 'status' ), 'http://wordpress.org', 'http://buddypress.org' ) ?></p>
</div>
<?php do_action( 'bp_footer' ) ?>
</footer><!-- #footer -->
<?php do_action( 'bp_after_footer' ) ?>
</div><!-- /#footer-wrapper -->
<?php wp_footer(); ?>
</body>
</html>