WP_Customize_Cropped_Image_Control::to_json()publicWP 4.3.0

Refresh the parameters passed to the JavaScript via JSON.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

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

Заметки

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

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

Код WP_Customize_Cropped_Image_Control::to_json() WP 6.4.3

public function to_json() {
	parent::to_json();

	$this->json['width']       = absint( $this->width );
	$this->json['height']      = absint( $this->height );
	$this->json['flex_width']  = absint( $this->flex_width );
	$this->json['flex_height'] = absint( $this->flex_height );
}