-
Notifications
You must be signed in to change notification settings - Fork 2
/
bp-navigation.php
54 lines (42 loc) · 1.4 KB
/
bp-navigation.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* Responsible for the search form and nav menu displayed in the header
* when an active BuddyPress install is detected.
*
* @package Elbee-Elgee
* @copyright Copyright (c) 2011, Doug Stewart
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License, v2 (or newer)
*
* @since Elbee-Elgee 1.0
*/
global $lblg_options;
?>
<div id="lb-bp-nav">
<?php
if( !$lblg_options['disable_bp_searchform'] ) { ?>
<div id="lb-bp-search-bar">
<div class="bp-padder">
<?php if ( bp_search_form_enabled() ) : ?>
<form action="<?php echo bp_search_form_action() ?>" method="post" id="search-form">
<input type="text" id="search-terms" name="search-terms" value="" />
<?php echo bp_search_form_type_select() ?>
<input type="submit" name="search-submit" id="search-submit" value="<?php _e( 'Search', 'buddypress' ) ?>" />
<?php wp_nonce_field( 'bp_search_form' ) ?>
</form><!-- #search-form -->
<?php endif; ?>
<?php do_action( 'bp_search_login_bar' ) ?>
</div><!-- .bp-padder -->
</div><!-- #lb-bp-search-bar -->
<?php
} // End if
if( !$lblg_options['disable_bp_menu'] )
wp_nav_menu( array( 'theme_location' => 'lblgbpmenu',
'container' => 'ul',
'container_id' => 'lblgbpmenu',
'depth' => '1'
) );
//echo bp_get_loggedin_user_nav();
//echo bp_get_userbar();
//echo bp_get_optionsbar();
?>
</div><!-- #lb-bp-nav -->