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 ;
}

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

  • Creator
    Topic
  • #3359
    Avatar photoEric Smith
    Keymaster
      Up
      0
      Down
      ::

      If you want to change the max topic length to 150, you can add following code into your function.php [code] add_filter (‘bbp_get_title_max_length’,’ch
      [See the full post at: How to Change the max Length of BBpress Topic ?]
      How to Change the max Length of BBpress Topic ?

    • You must be logged in to reply to this topic.