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

Top ↑

See also


Top ↑

Return

(string) UUID.


Top ↑

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;
	}


Top ↑

Changelog

Changelog
VersionDescription
4.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More