WP_Customize_Manager::_filter_revision_post_has_changed() WordPress Method
The WP_Customize_Manager::_filter_revision_post_has_changed() is used to check whether a revision post has changed. This is a method of the WP_Customize_Manager class.
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
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; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |