bbp_is_title_too_long

bbp_is_title_too_long

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_is_title_too_long') is found 1 times:

  • /includes/common/functions.php line 2634

    Warning: Undefined array key 2635 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 2636 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 2637 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 2638 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    Warning: Undefined array key 2639 in /home/c6974294/public_html/wp-plugin-api.com/wp-content/themes/wordpress-hooks/functions.php on line 167

    2630
    2631
    2632
    2633
    2634
    2635
        $len    = mb_strlen( $title, '8bit' );
        $result = ( $len > $max );
     
        // Filter & return
        return (bool) apply_filters( 'bbp_is_title_too_long', $result, $title, $max, $len );
    }