WP_Customize_Manager::changeset_uuid()
Get 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;
}
Changelog
Version | Description |
---|---|
WP-4.7.0 | Introduced. |