W3cubDocs

/WordPress

WP_Customize_Manager::_filter_revision_post_has_changed( bool $post_has_changed, WP_Post $last_revision, WP_Post $post )

Filters whether a changeset has changed to create a new revision.

Description

Note that this will not be called while a changeset post remains in auto-draft status.

Parameters

$post_has_changed

(bool) (Required) Whether the post has changed.

$last_revision

(WP_Post) (Required) The last revision post object.

$post

(WP_Post) (Required) The post object.

Return

(bool) Whether a revision should be made.

Source

File: wp-includes/class-wp-customize-manager.php

public function _filter_revision_post_has_changed( $post_has_changed, $last_revision, $post ) {
		unset( $last_revision );
		if ( 'customize_changeset' === $post->post_type ) {
			$post_has_changed = $this->store_changeset_revision;
		}
		return $post_has_changed;
	}

Changelog

Version Description
4.7.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_manager/_filter_revision_post_has_changed