bp_get_album_link()
Return the album description.
Description
Return
(string) The media album description.
Source
File: bp-media/bp-media-template.php
function bp_get_album_link() {
global $media_album_template;
if ( bp_is_group() && ! empty( $media_album_template->album->group_id ) ) {
$group_link = bp_get_group_permalink( buddypress()->groups->current_group );
$url = trailingslashit( $group_link . '/albums/' . bp_get_album_id() );
} else {
$url = trailingslashit( bp_displayed_user_domain() . bp_get_media_slug() . '/albums/' . bp_get_album_id() );
}
/**
* Filters the album description being displayed.
*
* @since BuddyBoss 1.0.0
*
* @param int $id The media album description.
*/
return apply_filters( 'bp_get_album_link', $url );
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 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.