WooCommerce::setup_environment()publicWC 1.0

Ensure theme and server variable compatibility and setup image sizes.

Метод класса: WooCommerce{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WooCommerce = new WooCommerce();
$WooCommerce->setup_environment();

Код WooCommerce::setup_environment() WC 8.7.0

public function setup_environment() {
	/**
	 * WC_TEMPLATE_PATH constant.
	 *
	 * @deprecated 2.2 Use WC()->template_path() instead.
	 */
	$this->define( 'WC_TEMPLATE_PATH', $this->template_path() );

	$this->add_thumbnail_support();
}