-
apply_filters( 'bbp_raw_title', $title, $sep, $seplocation )
Source Reference:
-
/** Views *****************************************************************/ // Views } elseif ( bbp_is_single_view() ) { $title = sprintf( __( 'View: %s', 'bbpress' ), bbp_get_view_title() ); } // Filter the raw title $title = apply_filters( 'bbp_raw_title', $title, $sep, $seplocation ); // Compare new title with original title if ( $title == $_title ) return $title; // Temporary separator, for accurate flipping, if necessary $t_sep = '%WP_TITILE_SEP%'; $prefix = ''; if ( !empty( $title ) )
-