wp_is_post_revision

Definition:
function wp_is_post_revision( $post ) {}

Determines if the specified post is a revision.

Parameters

  • int|object $post: Post ID or post object.

Return values

returns:False if not a revision, ID of revision’s parent otherwise.

Source code

function wp_is_post_revision( $post ) {

	if ( !$post = wp_get_post_revision( $post ) )

		return false;

	return (int) $post->post_parent;

}

3807

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: