bbp_raw_title
bbp_raw_title
Appears in: bbpress.2.5.14, bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_raw_title') is found 1 times:
- /includes/common/template.php line 27922788278927902791279227932794279527962797
// 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
;
}