WC_Checkout::checkout_form_shipping()publicWC 1.0

Output the shipping form.

Method of the class: WC_Checkout{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Checkout = new WC_Checkout();
$WC_Checkout->checkout_form_shipping();

WC_Checkout::checkout_form_shipping() code WC 8.7.0

public function checkout_form_shipping() {
	wc_get_template( 'checkout/form-shipping.php', array( 'checkout' => $this ) );
}