WP_Customize_Manager::changeset_uuid() WordPress Method
The WP_Customize_Manager::changeset_uuid() method is used to retrieve the changeset UUID for the current Customizer session.
WP_Customize_Manager::changeset_uuid() #
Gets the changeset UUID.
Description
See also
Return
(string) UUID.
Source
File: wp-includes/class-wp-customize-manager.php
public function changeset_uuid() { if ( empty( $this->_changeset_uuid ) ) { $this->establish_loaded_changeset(); } return $this->_changeset_uuid; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |