Files
Filename | Hook Type | Line Number | PHP Doc |
---|---|---|---|
wp-includes/revision.php | apply_filters | 160 | /** * Filters whether the post has changed since the latest revision. * * By default a revision is saved only if one of the revisioned fields has changed. * This filter can override that so a revision is saved even if nothing has changed. * * @since 3.6.0 * * @param bool $check_for_changes Whether to check for changes before saving a new revision. * Default true. * @param WP_Post $latest_revision The latest revision post object. * @param WP_Post $post The post object. */ |
Hook Parameters
Parameter Type | Name | Description |
---|---|---|
bool | $check_for_changes | Whether to check for changes before saving a new revision. |
WP_Post | $latest_revision | The latest revision post object. |
WP_Post | $post | The post object. |