WP_Customize_Manager::changeset_uuid()

Get the changeset UUID.


Description Description

See also See also


Top ↑

Return Return

(string) UUID.


Top ↑

Source 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

Changelog
Version Description
4.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.