You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
This is an important issue to complete before the 4.7 release in December.
The underlying architecture in snapshots was committed to core in WordPress 4.7-alpha. As such, the redundant code in snapshots should be only run if on 4.6 or less. All of the redundant code should be extracted into one or more back-compat classes.
Also, now that the post type is customize_changeset as opposed to customize_snapshot, there should be a data migration strategy. Also, any filters that apply on customize_snapshot_save should also apply onto customize_changeset_save_data.
Whenever a $_REQUEST['customize_snapshot_uuid'] is present we should during plugins_loaded make sure this gets mapped over to customize_changeset_uuid in $_GET, $_POST, and $_REQUEST.
In the end, the plugin should be reformulated to anticipate that more and more of the features of the plugin will be incorporated into core. So the more that we can facilitate turning off aspects of the code that are already in core, the better.
The text was updated successfully, but these errors were encountered:
This is an important issue to complete before the 4.7 release in December.
The underlying architecture in snapshots was committed to core in WordPress 4.7-alpha. As such, the redundant code in snapshots should be only run if on 4.6 or less. All of the redundant code should be extracted into one or more back-compat classes.
Also, now that the post type is
customize_changeset
as opposed tocustomize_snapshot
, there should be a data migration strategy. Also, any filters that apply oncustomize_snapshot_save
should also apply ontocustomize_changeset_save_data
.Whenever a
$_REQUEST['customize_snapshot_uuid']
is present we should duringplugins_loaded
make sure this gets mapped over tocustomize_changeset_uuid
in$_GET
,$_POST
, and$_REQUEST
.In the end, the plugin should be reformulated to anticipate that more and more of the features of the plugin will be incorporated into core. So the more that we can facilitate turning off aspects of the code that are already in core, the better.
The text was updated successfully, but these errors were encountered: