WC_Helper::get_woocommerce_com_base_url()public staticWC 1.0

Get WooCommerce.com base URL.

Method of the class: WC_Helper{}

Hooks from the method

Return

String.

Usage

$result = WC_Helper::get_woocommerce_com_base_url();

WC_Helper::get_woocommerce_com_base_url() code WC 9.5.1

public static function get_woocommerce_com_base_url() {
	/**
	 * Filter the base URL used to install the Woo hosted plugins.
	 *
	 * @since 8.7.0
	 */
	return trailingslashit( apply_filters( 'woo_com_base_url', 'https://woocommerce.com/' ) );
}