bbp_get_topic_revisions

bbp_get_topic_revisions

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_topic_revisions') is found 1 times:

  • /includes/topics/template.php line 973
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
        $topic_id  = bbp_get_topic_id( $topic_id );
        $revisions = wp_get_post_revisions( $topic_id, array( 'order' => 'ASC' ) );
     
        // Filter & return
        return apply_filters( 'bbp_get_topic_revisions', $revisions, $topic_id );
    }
     
    /**
     * Return the revision count of the topic
     *
     * @since 2.0.0 bbPress (r2782)