WP_Customize_Panel::json()
Gather the parameters passed to client JavaScript via JSON.
Метод класса: WP_Customize_Panel{}
Хуков нет.
Возвращает
Массив
. The array to be exported to the client as JSON.
Использование
$WP_Customize_Panel = new WP_Customize_Panel(); $WP_Customize_Panel->json();
Список изменений
С версии 4.1.0 | Введена. |
Код WP_Customize_Panel::json() WP Customize Panel::json WP 6.6.2
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; }