WP_Customize_Section::json()publicWP 4.1.0

Gather the parameters passed to client JavaScript via JSON.

Метод класса: WP_Customize_Section{}

Хуков нет.

Возвращает

Массив. The array to be exported to the client as JSON.

Использование

$WP_Customize_Section = new WP_Customize_Section();
$WP_Customize_Section->json();

Список изменений

С версии 4.1.0 Введена.

Код WP_Customize_Section::json() WP 6.5.2

public function json() {
	$array                   = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'panel', 'type', 'description_hidden' ) );
	$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;

	if ( $this->panel ) {
		/* translators: ▸ is the unicode right-pointing triangle. %s: Section title in the Customizer. */
		$array['customizeAction'] = sprintf( __( 'Customizing ▸ %s' ), esc_html( $this->manager->get_panel( $this->panel )->title ) );
	} else {
		$array['customizeAction'] = __( 'Customizing' );
	}

	return $array;
}