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 badges1 Answer
Reset to default 0AFAIR 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