post_revisions_meta_box()
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() post revisions meta box code WP 6.8
function post_revisions_meta_box( $post ) { wp_list_post_revisions( $post ); }