wp_save_post_revision_on_insert

函数
wp_save_post_revision_on_insert ( $post_id, $post, $update )
参数
  • (int) $post_id The post id that was inserted.
    Required:
  • (WP_Post) $post The post object that was inserted.
    Required:
  • (bool) $update Whether this insert is updating an existing post.
    Required:
定义位置
相关方法
wp_save_post_revisionwp_restore_post_revision_metawp_get_post_revisionswp_is_post_revisionwp_list_post_revisions
引入
6.4.0
弃用
-

在完成所有修改后,保存对文章的修订。

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

常见问题

FAQs
查看更多 >