
BuddyPress profile navs
By: a guest on
Apr 15th, 2012 | syntax:
None | size: 1.24 KB | hits: 50 | expires: Never
<?php
function my_test_setup_nav() {
global $bp;
//name, slug, screen, position, default subnav
bp_core_new_nav_item( array( 'name' => __( 'test' ), 'slug' => 'test', 'screen_function' => 'my_profile_page_function_to_show_screen', 'position' => 40, 'default_subnav_slug' => 'test_sub' ) );
/* Add the subnav items to the profile */
// name, slug, parent_url, parent slug, screen function
bp_core_new_subnav_item( array( 'name' => __( 'Home' ), 'slug' => 'test_sub', 'parent_url' => $bp->loggedin_user->domain, 'parent_slug' => 'test', 'screen_function' => 'my_profile_page_function_to_show_screen' ) );
function my_profile_page_function_to_show_screen() {
//add title and content here - last is to call the members plugin.php template
add_action( 'bp_template_title', 'my_profile_page_function_to_show_screen_title' );
add_action( 'bp_template_content', 'my_profile_page_function_to_show_screen_content' );
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
}
function my_profile_page_function_to_show_screen_title() {
echo 'something';
}
function my_profile_page_function_to_show_screen_content() {
echo 'weee content';
}
}
add_action( 'bp_setup_nav', 'my_test_setup_nav' );
?>