WP_Customize_Panel::json(): array

In this article

Gather the parameters passed to client JavaScript via JSON.

Return

array The array to be exported to the client as JSON.

Source

public function json() {
	$array                          = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'type' ) );
	$array['title']                 = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) );
	$array['content']               = $this->get_content();
	$array['active']                = $this->active();
	$array['instanceNumber']        = $this->instance_number;
	$array['autoExpandSoleSection'] = $this->auto_expand_sole_section;
	return $array;
}

Changelog

VersionDescription
4.1.0Introduced.

User Contributed Notes

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