wpseek.com
				Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
			wp_get_post_autosave › WordPress Function
Seit2.6.0
Veraltetn/v
› wp_get_post_autosave ( $post_id, $user_id = 0 )
| Parameter: (2) | 
 | 
| Gibt zurück: | 
 | 
| Definiert in: | 
 | 
| Codex: | 
Retrieves the autosaved data of the specified post.
Returns a post object with the information that was autosaved for the specified post. If the optional $user_id is passed, returns the autosave for that user, otherwise returns the latest autosave.Ähnliche Funktionen: wp_create_post_autosave, wp_is_post_autosave, wp_get_post_cats, wp_set_post_cats, wp_get_post_tags
	Quellcode
function wp_get_post_autosave( $post_id, $user_id = 0 ) {
	$args = array(
		'post_type'      => 'revision',
		'post_status'    => 'inherit',
		'post_parent'    => $post_id,
		'name'           => $post_id . '-autosave-v1',
		'posts_per_page' => 1,
		'orderby'        => 'date',
		'order'          => 'DESC',
		'fields'         => 'ids',
		'no_found_rows'  => true,
	);
	if ( 0 !== $user_id ) {
		$args['author'] = $user_id;
	}
	$query = new WP_Query( $args );
	if ( ! $query->have_posts() ) {
		return false;
	}
	return get_post( $query->posts[0] );
}