WP_Customize_Manager::changeset_uuid(): string

Gets the changeset UUID.


Description

Top ↑

See also


Top ↑

Return

string UUID.


Top ↑

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


Top ↑

Changelog

Changelog
Version Description
4.7.0 Introduced.

Top ↑

User Contributed Notes

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