Astra_Get_Headings_Font::get_output_schema()

Get output schema.


Description


Return

(array)


Source

File: inc/abilities/customizer/globals/typography/class-astra-get-headings-font.php

	public function get_output_schema() {
		return $this->build_output_schema(
			array(
				'font_family' => array(
					'type'        => 'string',
					'description' => 'Current headings font family.',
				),
				'font_weight' => array(
					'type'        => 'string',
					'description' => 'Current headings font weight.',
				),
				'font_extras' => array(
					'type'        => 'object',
					'description' => 'Additional typography settings (line height, text transform, letter spacing).',
				),
			)
		);
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.