Automattic\WooCommerce\Blocks\BlockTypes

Wishlist::get_block_type_styleprotectedWC 1.0

Get the frontend style handle for this block type.

Returning null lets WP use the style array from block.json, which lists this block's own stylesheet plus the atomic product-image / product-price / product-button stylesheets we borrow class names from.

Method of the class: Wishlist{}

No Hooks.

Returns

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->get_block_type_style();

Wishlist::get_block_type_style() code WC 10.9.4

protected function get_block_type_style() {
	return null;
}