bbp_get_topic_author_url( int $topic_id )

Return the author url of the topic

Description

Parameters

$topic_id

(Optional) Topic id

Return

(string) Author URL of topic

Source

File: bp-forums/topics/template.php

1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
function bbp_get_topic_author_url( $topic_id = 0 ) {
    $topic_id = bbp_get_topic_id( $topic_id );
 
    // Check for anonymous user or non-existant user
    if ( !bbp_is_topic_anonymous( $topic_id ) && bbp_user_has_profile( bbp_get_topic_author_id( $topic_id ) ) ) {
        $author_url = bbp_get_user_profile_url( bbp_get_topic_author_id( $topic_id ) );
    } else {
        $author_url = get_post_meta( $topic_id, '_bbp_anonymous_website', true );
 
        // Set empty author_url as empty string
        if ( empty( $author_url ) ) {
            $author_url = '';
        }
    }
 
    return apply_filters( 'bbp_get_topic_author_url', $author_url, $topic_id );
}

Changelog

Changelog
Version Description
bbPress (r2590) 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.