bp_nouveau_members_loop_buttons( array $args = array() )

Output the action buttons in member loops

Description

Parameters

$args

(Optional) See bp_nouveau_wrapper() for the description of parameters.

Default value: array()

Source

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

187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
function bp_nouveau_members_loop_buttons( $args = array() ) {
    if ( empty( $GLOBALS['members_template'] ) ) {
        return;
    }
 
    $args['type'] = 'loop';
    $action       = 'bp_directory_members_actions';
 
    // Specific case for group members.
    if ( bp_is_active( 'groups' ) && bp_is_group_members() ) {
        $args['type'] = 'group_member';
        $action       = 'bp_group_members_list_item_action';
 
    } elseif ( bp_is_active( 'friends' ) && bp_is_user_friend_requests() ) {
        $args['type'] = 'friendship_request';
        $action       = 'bp_friend_requests_item_action';
    }
 
    $output = join( ' ', bp_nouveau_get_members_buttons( $args ) );
 
    ob_start();
    /**
     * Fires inside the members action HTML markup to display actions.
     *
     * @since BuddyPress 1.1.0
     */
    do_action( $action );
    $output .= ob_get_clean();
 
    if ( ! $output ) {
        return;
    }
 
    bp_nouveau_wrapper( array_merge( $args, array( 'output' => $output ) ) );
}

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.