bp_get_album_link()

Return the album description.

Description

Return

(string) The media album description.

Source

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

1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
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

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.