WC_Helper_API::load()public staticWC 1.0

Load

Allow devs to point the API base to a local API development or staging server. Note that sslverify will be turned off for the woocommerce.dev + WP_DEBUG combination. The URL can be changed on plugins_loaded before priority 10.

Method of the class: WC_Helper_API{}

Hooks from the method

Return

null. Nothing (null).

Usage

$result = WC_Helper_API::load();

WC_Helper_API::load() code WC 8.7.0

public static function load() {
	self::$api_base = apply_filters( 'woocommerce_helper_api_base', 'https://woocommerce.com/wp-json/helper/1.0' );
}