bbp_normalize_forum( int $forum_id )
Remove the category status from a forum
Description
Parameters
- $forum_id
-
(Optional) Forum id
Return
(bool) False on failure, true on success
Source
File: bp-forums/forums/functions.php
774 775 776 777 778 779 780 781 782 783 784 785 | function bbp_normalize_forum( $forum_id = 0 ) { $forum_id = bbp_get_forum_id( $forum_id ); do_action( 'bbp_normalize_forum' , $forum_id ); update_post_meta( $forum_id , '_bbp_forum_type' , 'forum' ); do_action( 'bbp_normalized_forum' , $forum_id ); return $forum_id ; } |
Changelog
Version | Description |
---|---|
bbPress (r2746) | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.