bp_get_group_member_avatar_mini( int $width = 30, int $height = 30 )

Output the group member avatar while in the groups members loop.

Description

Parameters

$width

(Optional) Width of avatar to fetch.

Default value: 30

$height

(Optional) Height of avatar to fetch.

Default value: 30

Return

(string)

Source

File: bp-groups/bp-groups-template.php

4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
function bp_get_group_member_avatar_mini( $width = 30, $height = 30 ) {
    global $members_template;
 
    $r = bp_parse_args( array(), array(
        'item_id' => $members_template->member->user_id,
        'type'    => 'thumb',
        'email'   => $members_template->member->user_email,
        'alt'     => sprintf( __( 'Profile photo of %s', 'buddyboss' ), $members_template->member->display_name ),
        'width'   => absint( $width ),
        'height'  => absint( $height )
    ) );
 
    /**
     * Filters the group member avatar mini while in the groups members loop.
     *
     * @since BuddyPress 1.0.0
     *
     * @param string $value HTML markup for group member avatar mini.
     * @param array  $r     Parsed args used for the avatar query.
     */
    return apply_filters( 'bp_get_group_member_avatar_mini', bp_core_fetch_avatar( $r ), $r );
}

Changelog

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