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