Astra_Get_Footer_Builder_Design::get_input_schema()
Get input schema.
Description
Return
(array)
Source
File: inc/abilities/customizer/footer/class-astra-get-footer-builder-design.php
public function get_input_schema() {
return array(
'type' => 'object',
'properties' => array(
'section' => array(
'type' => 'string',
'description' => 'Footer section to get design options for: above, primary, or below. If not provided, returns all sections.',
'enum' => array( 'above', 'primary', 'below' ),
),
),
);
}
Expand full source code Collapse full source code View on Trac