wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_save_post_revision_on_insert › WordPress Function

Since6.4.0
Deprecatedn/a
wp_save_post_revision_on_insert ( $post_id, $post, $update )
Parameters: (3)
  • (int) $post_id The post id that was inserted.
    Required: Yes
  • (WP_Post) $post The post object that was inserted.
    Required: Yes
  • (bool) $update Whether this insert is updating an existing post.
    Required: Yes
Defined at:
Codex:

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



Source

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 );
}