-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfooter.php
28 lines (19 loc) · 909 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
</div> <!-- #container -->
<?php do_action( 'bp_after_container' ); ?>
<?php do_action( 'bp_before_footer' ); ?>
<div id="footer">
<?php if ( is_active_sidebar( 'first-footer-widget-area' ) || is_active_sidebar( 'second-footer-widget-area' ) || is_active_sidebar( 'third-footer-widget-area' ) || is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
<div id="footer-widgets">
<?php get_sidebar( 'footer' ); ?>
</div>
<?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>.', 'buddypress' ), 'http://wordpress.org', 'http://buddypress.org' ); ?></p>
</div>
<?php do_action( 'bp_footer' ); ?>
</div><!-- #footer -->
<?php do_action( 'bp_after_footer' ); ?>
<?php wp_footer(); ?>
</body>
</html>