bbp_raw_title

bbp_raw_title

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_raw_title') is found 1 times:

  • /includes/common/template.php line 2792
    2788
    2789
    2790
    2791
    2792
    2793
    2794
    2795
    2796
    2797
    // Get the formatted raw title
    $new_title = sprintf( $new_title['format'], $new_title['text'] );
     
    // Filter the raw title
    $new_title = apply_filters( 'bbp_raw_title', $new_title, $sep, $seplocation );
     
    // Compare new title with original title
    if ( $new_title === $title ) {
        return $title;
    }