WC_Checkout::get_posted_address_data() public WC 1.0
Get a posted address field after sanitization and validation.
{} Это метод класса: WC_Checkout{}
Хуков нет.
Возвращает
Строку.
Использование
$WC_Checkout = new WC_Checkout(); $WC_Checkout->get_posted_address_data( $key, $type );
- $key(строка) (обязательный)
- Field key.
- $type(строка)
- Type of address. Available options: 'billing' or 'shipping'.
Код WC_Checkout::get_posted_address_data() WC Checkout::get posted address data WC 5.0.0
public function get_posted_address_data( $key, $type = 'billing' ) {
if ( 'billing' === $type || false === $this->legacy_posted_data['ship_to_different_address'] ) {
$return = isset( $this->legacy_posted_data[ 'billing_' . $key ] ) ? $this->legacy_posted_data[ 'billing_' . $key ] : '';
} else {
$return = isset( $this->legacy_posted_data[ 'shipping_' . $key ] ) ? $this->legacy_posted_data[ 'shipping_' . $key ] : '';
}
return $return;
}