WP_Customize_Control::to_json()publicWP 3.4.0

Refresh the parameters passed to the JavaScript via JSON.

Method of the class: WP_Customize_Control{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Customize_Control = new WP_Customize_Control();
$WP_Customize_Control->to_json();

Changelog

Since 3.4.0 Introduced.

WP_Customize_Control::to_json() code WP 6.5.2

public function to_json() {
	$this->json['settings'] = array();
	foreach ( $this->settings as $key => $setting ) {
		$this->json['settings'][ $key ] = $setting->id;
	}

	$this->json['type']           = $this->type;
	$this->json['priority']       = $this->priority;
	$this->json['active']         = $this->active();
	$this->json['section']        = $this->section;
	$this->json['content']        = $this->get_content();
	$this->json['label']          = $this->label;
	$this->json['description']    = $this->description;
	$this->json['instanceNumber'] = $this->instance_number;

	if ( 'dropdown-pages' === $this->type ) {
		$this->json['allow_addition'] = $this->allow_addition;
	}
}