bbp_get_reply_status( int $reply_id )
Return the status of the reply
Description Description
Parameters Parameters
- $reply_id
-
(Optional) Reply id
Return Return
(string) Status of reply
Source Source
File: includes/replies/template.php
function bbp_get_reply_status( $reply_id = 0 ) { $reply_id = bbp_get_reply_id( $reply_id ); // Filter & return return apply_filters( 'bbp_get_reply_status', get_post_status( $reply_id ), $reply_id ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |