Automattic\WooCommerce\Blocks\BlockTypes
FilterWrapper{}└─ AbstractBlock
FilterWrapper class.
No Hooks.
Usage
$FilterWrapper = new FilterWrapper(); // use class methods
Methods
- protected get_block_type_style()
FilterWrapper{} FilterWrapper{} code WC 10.3.6
class FilterWrapper extends AbstractBlock {
/**
* Block name.
*
* @var string
*/
protected $block_name = 'filter-wrapper';
/**
* Get the frontend style handle for this block type.
*
* @return null
*/
protected function get_block_type_style() {
return null;
}
}