wc_ship_to_billing_address_only()WC 1.0

See if we only ship to billing addresses.

No Hooks.

Return

true|false.

Usage

wc_ship_to_billing_address_only();

wc_ship_to_billing_address_only() code WC 8.6.1

function wc_ship_to_billing_address_only() {
	return 'billing_only' === get_option( 'woocommerce_ship_to_destination' );
}