post_revisions_meta_box()
Displays list of revisions.
No Hooks.
Returns
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() post revisions meta box code WP 7.0
function post_revisions_meta_box( $post ) {
wp_list_post_revisions( $post );
}