BP_Members_Component::setup_profile_nav()

Set up a profile nav in case the xProfile component is not active and a front template is used.

Description

Source

File: bp-members/classes/class-bp-members-component.php

423
424
425
426
427
428
429
430
431
432
433
public function setup_profile_nav() {
    if ( empty( $this->main_nav ) || empty( $this->sub_nav ) ) {
        return;
    }
 
    // Add the main nav
    bp_core_new_nav_item( $this->main_nav, 'members' );
 
    // Add the sub nav item.
    bp_core_new_subnav_item( $this->sub_nav, 'members' );
}

Changelog

Changelog
Version Description
BuddyPress 2.6.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.