Automattic\WooCommerce\Internal\ProductImage

MatchImageBySKU::is_enabled()publicWC 8.3.0

Is this feature enabled.

Method of the class: MatchImageBySKU{}

No Hooks.

Return

true|false.

Usage

$MatchImageBySKU = new MatchImageBySKU();
$MatchImageBySKU->is_enabled();

Changelog

Since 8.3.0 Introduced.

MatchImageBySKU::is_enabled() code WC 9.3.3

public function is_enabled() {
	return wc_string_to_bool( get_option( $this->setting_name ) );
}