bbp_deleted_topic( $topic_id )
Called after deleting a topic
Description Description
Source Source
File: includes/topics/functions.php
function bbp_deleted_topic( $topic_id = 0 ) {
$topic_id = bbp_get_topic_id( $topic_id );
if ( empty( $topic_id ) || ! bbp_is_topic( $topic_id ) ) {
return false;
}
do_action( 'bbp_deleted_topic', $topic_id );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |