bbp_get_reply_raw_revision_log( int $reply_id )

Return the raw revision log of the reply

Description

Parameters

$reply_id

(Optional) Reply id

Return

(string) Raw revision log of the reply

Source

File: bp-forums/replies/template.php

856
857
858
859
860
861
862
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 ) ? array() : $revision_log;
 
    return apply_filters( 'bbp_get_reply_raw_revision_log', $revision_log, $reply_id );
}

Changelog

Changelog
Version Description
bbPress (r2782) 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.