bbp_get_reply_raw_revision_log( int $reply_id )
Return the raw revision log of the reply
Description Description
Parameters Parameters
- $reply_id
-
(Optional) Reply id
Return Return
(string) Raw revision log of the reply
Source Source
File: includes/replies/template.php
function bbp_get_reply_raw_revision_log( $reply_id = 0 ) { $reply_id = bbp_get_reply_id( $reply_id ); $revision_log = get_post_meta( $reply_id, '_bbp_revision_log', true ); $revision_log = ! empty( $revision_log ) ? $revision_log : array(); // Filter & return return apply_filters( 'bbp_get_reply_raw_revision_log', $revision_log, $reply_id ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |