bbp_get_topic_title( int $topic_id )

Return the title of the topic

Description

Parameters

$topic_id

(Optional) Topic id

Return

(string) Title of topic

Source

File: bp-forums/topics/template.php

647
648
649
650
651
652
function bbp_get_topic_title( $topic_id = 0 ) {
    $topic_id = bbp_get_topic_id( $topic_id );
    $title    = get_the_title( $topic_id );
 
    return apply_filters( 'bbp_get_topic_title', $title, $topic_id );
}

Changelog

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