You appear to be a bot. Output may be restricted
Description
Get the schema for the contentVisibility attribute
Usage
$array = AbstractProductGrid::get_schema_content_visibility();
Parameters
Returns
array List of block attributes with type and defaults.
Source
File name: woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php
Lines:
1 to 11 of 11
protected function get_schema_content_visibility() { return array( 'type' => 'object', 'properties' => array( 'title' => $this->get_schema_boolean( true ), 'price' => $this->get_schema_boolean( true ), 'rating' => $this->get_schema_boolean( true ), 'button' => $this->get_schema_boolean( true ), ), ); }