BP_Core_Nav::get_secondary( array $args = array(), bool $sort = true )

Gets the secondary nav items.

Description

Parameters

$args

(Optional) Filters to select the specific secondary items. See wp_list_filter().

Default value: array()

$sort

(Optional) True to sort the nav items. False otherwise.

Default value: true

Return

(bool|array) The list of secondary objects nav, or false if none set.

Source

File: bp-core/classes/class-bp-core-nav.php

368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
public function get_secondary( $args = array(), $sort = true ) {
    $params = wp_parse_args( $args, array( 'parent_slug' => '' ) );
 
    // No need to search children if the parent is not set.
    if ( empty( $params['parent_slug'] ) && empty( $params['secondary'] ) ) {
        return false;
    }
 
    $secondary_nav = wp_list_filter( $this->nav[ $this->object_id ], $params );
 
    if ( ! $secondary_nav ) {
        return false;
    }
 
    if ( true !== $sort ) {
        return $secondary_nav;
    }
 
    return $this->sort_nav( $secondary_nav );
}

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.