Get rid of the word private in bbpress forums names

admin2025-06-06  1

When I declare a forum private the word "private:" is prepend to the title of the forum, and is visible even for the register members.

how can I get rid of that prepend word?

When I declare a forum private the word "private:" is prepend to the title of the forum, and is visible even for the register members.

how can I get rid of that prepend word?

Share Improve this question asked Nov 29, 2018 at 14:38 TraukoTrauko 251 silver badge6 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

AFAIR BBPress relies on WP functions with these titles, so most probably this will be helpful:

function remove_private_prefix_from_title( $title ) {
    return '%s';
}
add_filter( 'private_title_format', 'remove_private_prefix_from_title' );

And here you can find docs for that filter: private_title_format

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749141302a316715.html

最新回复(0)