bbp_update_topic_id
bbp_update_topic_id
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_update_topic_id') is found 1 times:
- /includes/core/functions.php line 125121122123124125126127128129130131
*/
function
bbp_update_topic_id(
$post_id
= 0,
$topic_id
= 0 ) {
// Allow the topic ID to be updated 'just in time' before save
$topic_id
= (int) apply_filters(
'bbp_update_topic_id'
,
$topic_id
,
$post_id
);
// Update the post meta topic ID
update_post_meta(
$post_id
,
'_bbp_topic_id'
,
$topic_id
);
return
$topic_id
;
}