WC_Legacy_Customer::set_country( string $country )

Legacy set country.


Description Description


Parameters Parameters

$country

(Required)


Top ↑

Source Source

File: includes/legacy/class-wc-legacy-customer.php

	function set_country( $country ) {
		wc_deprecated_function( 'WC_Customer::set_country', '3.0', 'WC_Customer::set_billing_country' );
		$this->set_billing_country( $country );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.