WC_Helper_API::load()
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() WC Helper API::load code WC 9.2.3
public static function load() { self::$api_base = apply_filters( 'woocommerce_helper_api_base', 'https://woocommerce.com/wp-json/helper/1.0' ); }