Automattic\WooCommerce\Internal\Fulfillments\Providers

USPSShippingProvider::get_iconpublicWC 1.0

Gets the path to the provider's icon.

Method of the class: USPSShippingProvider{}

No Hooks.

Returns

String. URL to the USPS logo image.

Usage

$USPSShippingProvider = new USPSShippingProvider();
$USPSShippingProvider->get_icon(): string;

USPSShippingProvider::get_icon() code WC 10.3.3

public function get_icon(): string {
	return esc_url( WC()->plugin_url() ) . '/assets/images/shipping_providers/usps.png';
}