WP_Customize_Themes_Section::json() – Get section parameters for JS.

You appear to be a bot. Output may be restricted

Description

Get section parameters for JS.

Usage

$array = WP_Customize_Themes_Section::json();

Parameters

Returns

array Exported parameters.

Source

File name: wordpress/wp-includes/customize/class-wp-customize-themes-section.php
Lines:

1 to 7 of 7
  public function json() {
    $exported                = parent::json();
    $exported['action']      = $this->action;
    $exported['filter_type'] = $this->filter_type;

    return $exported;
  }
 

 View on GitHub View on Trac