Uses
| Uses | Description |
|---|---|
| wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
Gets a post revision.
(int|WP_Post) (Required) The post ID or object.
(string) (Optional) The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to a WP_Post object, an associative array, or a numeric array, respectively.
Default value: OBJECT
(string) (Optional) sanitation filter. See sanitize_post().
Default value: 'raw'
(WP_Post|array|null) WP_Post (or array) on success, or null on failure.
File: wp-includes/revision.php
function wp_get_post_revision( &$post, $output = OBJECT, $filter = 'raw' ) {
$revision = get_post( $post, OBJECT, $filter );
if ( ! $revision ) {
return $revision;
}
if ( 'revision' !== $revision->post_type ) {
return null;
}
if ( OBJECT == $output ) {
return $revision;
} elseif ( ARRAY_A == $output ) {
$_revision = get_object_vars( $revision );
return $_revision;
} elseif ( ARRAY_N == $output ) {
$_revision = array_values( get_object_vars( $revision ) );
return $_revision;
}
return $revision;
} | Version | Description |
|---|---|
| 2.6.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_get_post_revision