wp_is_post_autosave() WordPress Function
The wp_is_post_autosave() function is used to check if the current post is an autosave.
wp_is_post_autosave( int|WP_Post $post ) #
Determines if the specified post is an autosave.
Parameters
- $post
(int|WP_Post)(Required)Post ID or post object.
Return
(int|false) ID of autosave's parent on success, false if not a revision.
Source
File: wp-includes/revision.php
function wp_is_post_autosave( $post ) {
$post = wp_get_post_revision( $post );
if ( ! $post ) {
return false;
}
if ( false !== strpos( $post->post_name, "{$post->post_parent}-autosave" ) ) {
return (int) $post->post_parent;
}
return false;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |