How to create a new tab in members component in BP 1.7 beta?
-
I´m trying to create a new tab in BP 1.7 members menu with this code:
`
function my_bp_nav_adder() {bp_core_new_nav_item(
array(
‘name’ => __( ‘Media Privacy’,'bp-media-privacy’ ),
‘slug’ => ‘cuenta’,
‘position’ => 75,
‘show_for_displayed_user’ => true,
‘screen_function’ => ‘bp_media_privacy_link’,
‘item_css_id’ => ‘bp-media-privacy’
)
);}
function bp_media_privacy_link () {
add_action( ‘bp_template_title’, ‘my_media_privacy_title’ );
add_action( ‘bp_template_content’, ‘my_media_privacy_content’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘/members/single/plugins’ ) );
}
function my_media_privacy_title() {
echo ‘My Page Title’;
}
function my_media_privacy_content() {
echo ‘Add the content loop here’;
}
add_action( ‘bp_setup_nav’, ‘my_bp_nav_adder’, 100 );
`The code create a new tab, but when I click the tab buddypress redirect me to the members loop, and not create the content for the new tab.
Any suggestions? thanks
You must be logged in to reply to this topic.