wp_is_post_revision( int|WP_Post $post )
Determines if the specified post is a revision.
Parameters
- $post
-
(Required) Post ID or post object.
Return
(false|int) False if not a revision, ID of revision's parent otherwise.
Source
File: wp-includes/revision.php
function wp_is_post_revision( $post ) {
if ( !$post = wp_get_post_revision( $post ) )
return false;
return (int) $post->post_parent;
}
Changelog
Version | Description |
---|---|
WP-2.6.0 | Introduced. |