bbp_edit_reply_pre_set_terms
bbp_edit_reply_pre_set_terms
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_edit_reply_pre_set_terms') is found 1 times:
- /includes/replies/functions.php line 716713714715716717718719720721722
/** Topic Tags ************************************************************/
// Just in time manipulation of reply terms before being edited
$terms
= apply_filters(
'bbp_edit_reply_pre_set_terms'
,
$terms
,
$topic_id
,
$reply_id
);
// Insert terms
$terms
= wp_set_post_terms(
$topic_id
,
$terms
, bbp_get_topic_tag_tax_id(), false );
// Term error
if
( is_wp_error(
$terms
) ) {