bbp_is_topic_open( int $topic_id )
Is the topic open to new replies?
Description Description
Parameters Parameters
- $topic_id
-
(Optional) Topic id
Return Return
(bool) True if open, false if closed.
Source Source
File: includes/topics/template.php
function bbp_is_topic_open( $topic_id = 0 ) {
return ! bbp_is_topic_closed( $topic_id );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |