Filter hook 'wp_prepare_revision_for_js'

in WP Core File wp-admin/includes/revision.php at line 282

Description

Filters the array of revisions used on the revisions screen. modified date matches the revision modified date (GMT-aware). }

Occurrences

Filename Line Number
wp-admin/includes/revision.php 282

Parameters

Type Name Description
array $revisions_data { The bootstrapped data for the revisions screen.
WP_Post $revision The revision's WP_Post object.
WP_Post $post The revision's parent WP_Post object.

PHP Doc

/**
		 * Filters the array of revisions used on the revisions screen.
		 *
		 * @since 4.4.0
		 *
		 * @param array   $revisions_data {
		 *     The bootstrapped data for the revisions screen.
		 *
		 *     @type int        $id         Revision ID.
		 *     @type string     $title      Title for the revision's parent WP_Post object.
		 *     @type int        $author     Revision post author ID.
		 *     @type string     $date       Date the revision was modified.
		 *     @type string     $dateShort  Short-form version of the date the revision was modified.
		 *     @type string     $timeAgo    GMT-aware amount of time ago the revision was modified.
		 *     @type bool       $autosave   Whether the revision is an autosave.
		 *     @type bool       $current    Whether the revision is both not an autosave and the post
		 *                                  modified date matches the revision modified date (GMT-aware).
		 *     @type bool|false $restoreUrl URL if the revision can be restored, false otherwise.
		 * }
		 * @param WP_Post $revision       The revision's WP_Post object.
		 * @param WP_Post $post           The revision's parent WP_Post object.
		 */