bbp_deleted_forum( $forum_id )
Called after deleting a forum
Description Description
Try not to use this action. All meta & taxonomy terms have already been deleted, making them impossible to use.
Source Source
File: includes/forums/functions.php
function bbp_deleted_forum( $forum_id = 0 ) {
$forum_id = bbp_get_forum_id( $forum_id );
if ( empty( $forum_id ) || ! bbp_is_forum( $forum_id ) ) {
return false;
}
do_action( 'bbp_deleted_forum', $forum_id );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.6.0 | bbPress (r6526) Not recommend for usage |
| 2.1.0 | Introduced. |