Menu Close

How to Change the max Length of BBpress Topic ?

If you want to change the max topic length to 150, you can add following code into your function.php


add_filter ('bbp_get_title_max_length','change_title') ;

Function change_title ($default) {
$default=60 ;
Return $default ;
}