bp_nouveau_get_nav_link_id()

Retrieve the id attribute of the link for the current nav item.

Description

Return

(string) The link id for the nav item.

Source

File: bp-templates/bp-nouveau/includes/template-tags.php

1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
function bp_nouveau_get_nav_link_id() {
    $bp_nouveau = bp_nouveau();
    $nav_item   = $bp_nouveau->current_nav_item;
    $link_id   = '';
 
    if ( ( 'groups' === $bp_nouveau->displayed_nav || 'personal' === $bp_nouveau->displayed_nav ) && ! empty( $nav_item->css_id ) ) {
        $link_id = $nav_item->css_id;
 
        if ( ! empty( $nav_item->primary ) && 'personal' === $bp_nouveau->displayed_nav ) {
            $link_id = 'user-' . $link_id;
        }
    } else {
        $link_id = $nav_item->slug;
    }
 
    /**
     * Filter to edit the link id attribute of the nav.
     *
     * @since BuddyPress 3.0.0
     *
     * @param string $link_id  The link id attribute for the nav item.
     * @param object $nav_item The current nav item object.
     * @param string $value    The current nav in use (eg: 'directory', 'groups', 'personal', etc..).
     */
    return apply_filters( 'bp_nouveau_get_nav_link_id', $link_id, $nav_item, $bp_nouveau->displayed_nav );
}

Changelog

Changelog
Version Description
BuddyPress 3.0.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.