bp_get_avatar_to_crop()

Return the URL of the avatar to crop.

Description

Return

(string) URL of the avatar awaiting cropping.

Source

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

281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
function bp_get_avatar_to_crop() {
    $bp  = buddypress();
    $url = isset( $bp->avatar_admin->image->url )
        ? $bp->avatar_admin->image->url
        : '';
 
    /**
     * Filters the URL of the avatar to crop.
     *
     * @since BuddyPress 1.1.0
     *
     * @param string $url URL for the avatar.
     */
    return apply_filters( 'bp_get_avatar_to_crop', $url );
}

Changelog

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