Changeset 7276 for trunk/src/includes/topics/template.php
- Timestamp:
- 07/02/2024 04:11:29 PM (20 months ago)
- File:
-
- 1 edited
-
trunk/src/includes/topics/template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/topics/template.php
r7268 r7276 601 601 function bbp_get_topic_title( $topic_id = 0 ) { 602 602 $topic_id = bbp_get_topic_id( $topic_id ); 603 $title = get_the_title( $topic_id ); 603 $title = get_post_field( 'post_title', $topic_id ); 604 $title = apply_filters( 'the_title', $title, $topic_id ); 604 605 605 606 // Filter & return
Note: See TracChangeset
for help on using the changeset viewer.