'section', 'id' => self::SECTION_ID, 'title' => __( 'Blog Settings', 'brandy' ), 'panel' => GeneralPanel::PANEL_ID, 'type' => 'brandy-section', 'description_hidden' => true, ); $configurations[] = array( 'configuration_type' => 'control', 'id' => self::SECTION_ID, 'label' => __( 'Blog Settings', 'brandy' ), 'section' => self::SECTION_ID, 'type' => 'brandy_settings', 'input_attrs' => array( 'value' => '', 'style' => 'display:none;', ), 'partial' => false, 'default' => self::get_default_value(), 'transport' => 'postMessage', ); return $configurations; } public static function get_default_value() { return BlogPageService::get_default_settings(); } }