WooCommerce::add_thumbnail_support()privateWC 1.0

Ensure post thumbnail support is turned on.

Method of the class: WooCommerce{}

No Hooks.

Return

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->add_thumbnail_support();

WooCommerce::add_thumbnail_support() code WC 8.7.0

private function add_thumbnail_support() {
	if ( ! current_theme_supports( 'post-thumbnails' ) ) {
		add_theme_support( 'post-thumbnails' );
	}
	add_post_type_support( 'product', 'thumbnail' );
}