WC_Helper::get_woocommerce_com_base_url()
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() 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/' ) ); }