wp_is_post_autosave

Definition:
function wp_is_post_autosave( $post ) {}

Determines if the specified post is an autosave.

Parameters

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

Return values

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

Source code

function wp_is_post_autosave( $post ) {

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

		return false;

	if ( "{$post->post_parent}-autosave" !== $post->post_name )

3805

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: