Changeset 7276 for trunk/src/includes/forums/template.php
- Timestamp:
- 07/02/2024 04:11:29 PM (21 months ago)
- File:
-
- 1 edited
-
trunk/src/includes/forums/template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/forums/template.php
r7239 r7276 373 373 function bbp_get_forum_title( $forum_id = 0 ) { 374 374 $forum_id = bbp_get_forum_id( $forum_id ); 375 $title = get_the_title( $forum_id ); 375 $title = get_post_field( 'post_title', $forum_id ); 376 $title = apply_filters( 'the_title', $title, $forum_id ); 376 377 377 378 // Filter & return
Note: See TracChangeset
for help on using the changeset viewer.