bp_get_member_permalink()
Get the permalink for the current member in the loop.
Description
Return
(string)
Source
File: bp-members/bp-members-template.php
872 873 874 875 876 877 878 879 880 881 882 883 | function bp_get_member_permalink() { global $members_template ; /** * Filters the permalink for the current member in the loop. * * @since BuddyPress 1.2.0 * * @param string $value Permalink for the current member in the loop. */ return apply_filters( 'bp_get_member_permalink' , bp_core_get_user_domain( $members_template ->member->id, $members_template ->member->user_nicename, $members_template ->member->user_login ) ); } |
Changelog
Version | Description |
---|---|
BuddyPress 1.2.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.