Get rid of the word private in bbpress forums names
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?
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
Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.