WC_Order::get_billing_postcode PHP Method

get_billing_postcode() public method

Get billing_postcode.
public get_billing_postcode ( string $context = 'view' ) : string
$context string
return string
    public function get_billing_postcode($context = 'view')
    {
        return $this->get_address_prop('postcode', 'billing', $context);
    }

Usage Example

示例#1
0
 /**
  * Test: get_billing_postcode
  */
 function test_get_billing_postcode()
 {
     $object = new WC_Order();
     $set_to = '00001';
     $object->set_billing_postcode($set_to);
     $this->assertEquals($set_to, $object->get_billing_postcode());
 }
All Usage Examples Of WC_Order::get_billing_postcode
WC_Order