wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_save_post_revision_on_insert › WordPress Function

Da6.4.0
Deprecaton/a
wp_save_post_revision_on_insert ( $post_id, $post, $update )
Parametri: (3)
  • (int) $post_id The post id that was inserted.
    Richiesto:
  • (WP_Post) $post The post object that was inserted.
    Richiesto:
  • (bool) $update Whether this insert is updating an existing post.
    Richiesto:
Definito a:
Codex:

Saves revisions for a post after all changes have been made.



Sorgenti

function wp_save_post_revision_on_insert( $post_id, $post, $update ) {
	if ( ! $update ) {
		return;
	}

	if ( ! has_action( 'post_updated', 'wp_save_post_revision' ) ) {
		return;
	}

	wp_save_post_revision( $post_id );
}