Astra_Update_Paragraph_Margin::get_input_schema()

Get input schema.


Description


Return

(array)


Source

File: inc/abilities/customizer/globals/typography/class-astra-update-paragraph-margin.php

	public function get_input_schema() {
		return array(
			'type'       => 'object',
			'properties' => array(
				'margin_bottom' => array(
					'type'        => 'number',
					'description' => 'Margin bottom value in em (0.5 to 5)',
					'minimum'     => 0.5,
					'maximum'     => 5,
				),
			),
			'required'   => array( 'margin_bottom' ),
		);
	}

User Contributed Notes

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