bbp_new_topic_pre_title
bbp_new_topic_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_topic_pre_title') is found 1 times:
- /includes/topics/functions.php line 154150151152153154155156157158159
$topic_title
= sanitize_text_field(
$_POST
[
'bbp_topic_title'
] );
}
// Filter and sanitize
$topic_title
= apply_filters(
'bbp_new_topic_pre_title'
,
$topic_title
);
// No topic title
if
(
empty
(
$topic_title
) ) {
bbp_add_error(
'bbp_topic_title'
, __(
'<strong>Error</strong>: Your topic needs a title.'
,
'bbpress'
) );
}