bbp_get_title_max_length

bbp_get_title_max_length

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_title_max_length') is found 1 times:

  • /includes/core/options.php line 601
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
         */
        function bbp_get_title_max_length( $default = 80 ) {
     
            // Filter & return
            return (int) apply_filters( 'bbp_get_title_max_length', (int) get_option( '_bbp_title_max_length', $default ) );
        }
     
    /**
     * Output the number of minutes a topic or reply can be edited after it's
     * published. Used by `bbp_past_edit_lock()`.
     *