post_revisions_meta_box()WP 2.6.0

Displays list of revisions.

No Hooks.

Return

null. Nothing (null).

Usage

post_revisions_meta_box( $post );
$post(WP_Post) (required)
Current post object.

Changelog

Since 2.6.0 Introduced.

post_revisions_meta_box() code WP 6.5.2

function post_revisions_meta_box( $post ) {
	wp_list_post_revisions( $post );
}