WooCommerce::legacy_rest_api_is_available()publicWC 1.0

Check if the Legacy REST API plugin is active (and thus the Legacy REST API is available).

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

Хуков нет.

Возвращает

true|false.

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

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

Код WooCommerce::legacy_rest_api_is_available() WC 9.4.2

public function legacy_rest_api_is_available() {
	return class_exists( 'WC_Legacy_REST_API_Plugin', false );
}