Astra_Update_Headings_Font::get_output_schema()
Get output schema.
Description
Return
(array)
Source
File: inc/abilities/customizer/globals/typography/class-astra-update-headings-font.php
public function get_output_schema() {
return $this->build_output_schema(
array(
'font_family' => array(
'type' => 'string',
'description' => 'Updated headings font family.',
),
'font_weight' => array(
'type' => 'string',
'description' => 'Updated headings font weight.',
),
'font_extras' => array(
'type' => 'object',
'description' => 'Updated additional typography settings (line height, text transform, letter spacing).',
),
)
);
}
Expand full source code Collapse full source code View on Trac