wp_save_revisioned_meta_fields

函数
wp_save_revisioned_meta_fields ( $revision_id, $post_id )
参数
  • (int) $revision_id The ID of the revision to save the meta to.
    Required:
  • (int) $post_id The ID of the post the revision is associated with.
    Required:
定义位置
相关方法
wp_autosave_post_revisioned_meta_fieldswp_post_revision_meta_keys_wp_post_revision_fieldswp_check_revisioned_meta_fields_have_changedwp_save_post_revision_on_insert
引入
6.4.0
弃用
-

保存已修订的元字段。

function wp_save_revisioned_meta_fields( $revision_id, $post_id ) {
	$post_type = get_post_type( $post_id );
	if ( ! $post_type ) {
		return;
	}

	foreach ( wp_post_revision_meta_keys( $post_type ) as $meta_key ) {
		if ( metadata_exists( 'post', $post_id, $meta_key ) ) {
			_wp_copy_post_meta( $post_id, $revision_id, $meta_key );
		}
	}
}

常见问题

FAQs
查看更多 >