Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/22/2014 09:21:21 PM (11 years ago)
Author:
r-a-y
Message:

Don't fetch item counts in profile navigation unnecessarily.

Previously, when a component's setup_nav() method is fired, the item
count for the component is fetched without any conditional checks.

This causes unneccessary queries to be fired when a user isn't logged
in or when we're not on a single user page.

This commit only fetches the item count in the profile nav if we're
currently on a single user page and/or if the current user has access
to the component nav item.

Fixes #5413

Props r-a-y, boonebgorges

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-groups/bp-groups-loader.php

    r7840 r7966  
    347347    public function setup_nav( $main_nav = array(), $sub_nav = array() ) {
    348348
     349        // Only grab count if we're on a user page
     350        if ( bp_is_user() ) {
     351            $count    = bp_get_total_group_count_for_user();
     352            $class    = ( 0 === $count ) ? 'no-count' : 'count';
     353            $nav_name = sprintf( __( 'Groups <span class="%s">%s</span>', 'buddypress' ), esc_attr( $class ), number_format_i18n( $count ) );
     354        } else {
     355            $nav_name = __( 'Groups', 'buddypress' );
     356        }
     357
    349358        // Add 'Groups' to the main navigation
    350         $count    = bp_get_total_group_count_for_user();
    351         $class    = ( 0 === $count ) ? 'no-count' : 'count';
    352359        $main_nav = array(
    353             'name'                => sprintf( __( 'Groups <span class="%s">%s</span>', 'buddypress' ), esc_attr( $class ), number_format_i18n( $count ) ),
     360            'name'                => $nav_name,
    354361            'slug'                => $this->slug,
    355362            'position'            => 70,
Note: See TracChangeset for help on using the changeset viewer.