bbp_new_reply_pre_title
bbp_new_reply_pre_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
See hook in action
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_new_reply_pre_title') is found 1 times:
- /includes/replies/functions.php line 280276277278279280281282283284285
$reply_title
= sanitize_text_field(
$_POST
[
'bbp_reply_title'
] );
}
// Filter and sanitize
$reply_title
= apply_filters(
'bbp_new_reply_pre_title'
,
$reply_title
);
// Title too long
if
( bbp_is_title_too_long(
$reply_title
) ) {
bbp_add_error(
'bbp_reply_title'
, __(
'<strong>Error</strong>: Your title is too long.'
,
'bbpress'
) );
}