Skip to:
Content
Pages
Categories
Search
Top
Bottom

Title characters increased by more than 80


  • abuharon
    Participant

    @abuharon

    Hello, how can I increase the length of the title while creating a new thread to be more than 80

Viewing 3 replies - 1 through 3 (of 3 total)

  • Robin W
    Moderator

    @robin-w

    add_filter ('bbp_get_title_max_length' , 'rew_change_length') ;
    
    function rew_change_length () {
    	$length = 160 ;
    return $length ;
    }

    so change length to whatever number you want.

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets


    abuharon
    Participant

    @abuharon

    Edited, thank you


    Robin W
    Moderator

    @robin-w

    glad to have helped 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar