wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_is_post_autosave › WordPress Function

Seit2.6.0
Veraltetn/v
wp_is_post_autosave ( $post )
Parameter:
  • (int|WP_Post) $post Post ID or post object.
    Erforderlich: Ja
Gibt zurück:
  • (int|false) ID of autosave's parent on success, false if not a revision.
Definiert in:
Codex:

Determines if the specified post is an autosave.



Quellcode

function wp_is_post_autosave( $post ) {
	$post = wp_get_post_revision( $post );

	if ( ! $post ) {
		return false;
	}

	if ( str_contains( $post->post_name, "{$post->post_parent}-autosave" ) ) {
		return (int) $post->post_parent;
	}

	return false;
}