bp_members_edit_profile_url( string $url, int $user_id, string $scheme = 'admin' )

Filter the user profile URL to point to BuddyPress profile edit.

Description

Parameters

$url

(Required) WP profile edit URL.

$user_id

(Required) ID of the user.

$scheme

(Optional) Scheme to use.

Default value: 'admin'

Return

(string)

Source

File: bp-members/bp-members-filters.php

105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
function bp_members_edit_profile_url( $url, $user_id, $scheme = 'admin' ) {
 
    // If xprofile is active, use profile domain link.
    if ( ! is_admin() && bp_is_active( 'xprofile' ) ) {
        $profile_link = trailingslashit( bp_core_get_user_domain( $user_id ) . bp_get_profile_slug() . '/edit' );
 
    } else {
        // Default to $url.
        $profile_link = $url;
    }
 
    /**
     * Filters the user profile URL to point to BuddyPress profile edit.
     *
     * @since BuddyPress 1.5.2
     *
     * @param string $url WP profile edit URL.
     * @param int    $user_id ID of the user.
     * @param string $scheme Scheme to use.
     */
    return apply_filters( 'bp_members_edit_profile_url', $profile_link, $url, $user_id, $scheme );
}

Changelog

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