bbp_update_forum_subforum_count( int $forum_id, $subforums )
Update the forum sub-forum count
Description
Parameters
- $forum_id
-
(Optional) Forum id
Return
(bool) True on success, false on failure
Source
File: bp-forums/forums/functions.php
function bbp_update_forum_subforum_count( $forum_id = 0, $subforums = 0 ) { $forum_id = bbp_get_forum_id( $forum_id ); if ( empty( $subforums ) ) $subforums = count( bbp_forum_query_subforum_ids( $forum_id ) ); update_post_meta( $forum_id, '_bbp_forum_subforum_count', (int) $subforums ); return (int) apply_filters( 'bbp_update_forum_subforum_count', (int) $subforums, $forum_id ); }
Changelog
Version | Description |
---|---|
bbPress (r2625) | 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.