WP_Customize_Partial::id_data() WordPress Method

The id_data() method is used to retrieve the data for a partial with a given ID. This data can be used to render the partial.

WP_Customize_Partial::id_data() #

Retrieves parsed ID data for multidimensional setting.


Return

(array) ID data for multidimensional partial.

  • 'base'
    (string) ID base.
  • 'keys'
    (array) Keys for multidimensional array.


Top ↑

Source

File: wp-includes/customize/class-wp-customize-partial.php

	final public function id_data() {
		return $this->id_data;
	}

Top ↑

Changelog

Changelog
VersionDescription
4.5.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.