Automattic\WooCommerce\Blocks\Templates

ArchiveProductTemplatesCompatibility::is_post_or_product_template()privateWC 1.0

Check if block is either a Post template or a Product Template

Method of the class: ArchiveProductTemplatesCompatibility{}

No Hooks.

Return

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->is_post_or_product_template( $block_name );
$block_name(string) (required)
Block name.

ArchiveProductTemplatesCompatibility::is_post_or_product_template() code WC 9.5.1

private function is_post_or_product_template( $block_name ) {
	return $this->is_post_template( $block_name ) || $this->is_product_template( $block_name );
}