post_revisions_meta_box

The timeline below displays how wordpress function post_revisions_meta_box has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * Displays list of revisions.
 *
 * @since 2.6.0
 *
 * @param WP_Post $post Current post object.
 */
function post_revisions_meta_box($post)
{
    wp_list_post_revisions($post);
}

WordPress Version: 5.6

/**
 * Display list of revisions.
 *
 * @since 2.6.0
 *
 * @param WP_Post $post
 */
function post_revisions_meta_box($post)
{
    wp_list_post_revisions($post);
}

WordPress Version: 3.7

/**
 * Display list of revisions.
 *
 * @since 2.6.0
 *
 * @param object $post
 */
function post_revisions_meta_box($post)
{
    wp_list_post_revisions($post);
}