On this page
WP_Customize_Manager::changeset_uuid(): string
Gets the changeset UUID.
Description
See also
Return
string UUID.
Source
File: wp-includes/class-wp-customize-manager.php. View all references
public function changeset_uuid() {
if ( empty( $this->_changeset_uuid ) ) {
$this->establish_loaded_changeset();
}
return $this->_changeset_uuid;
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Customize_Manager::establish_loaded_changeset() wp-includes/class-wp-customize-manager.php | Establishes the loaded changeset. |
Used By
| Used By | Description |
|---|---|
| WP_Customize_Manager::save_changeset_post() wp-includes/class-wp-customize-manager.php | Saves the post for the loaded changeset. |
| WP_Customize_Manager::add_state_query_params() wp-includes/class-wp-customize-manager.php | Adds customize state query params to a given URL if preview is allowed. |
| WP_Customize_Manager::changeset_post_id() wp-includes/class-wp-customize-manager.php | Gets the changeset post ID for the loaded changeset. |
| WP_Customize_Manager::customize_pane_settings() wp-includes/class-wp-customize-manager.php | Prints JavaScript settings for parent window. |
| WP_Customize_Manager::customize_preview_settings() wp-includes/class-wp-customize-manager.php | Prints JavaScript settings for preview frame. |
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_manager/changeset_uuid