WC_Checkout::checkout_form_billing()publicWC 1.0

Output the billing form.

Method of the class: WC_Checkout{}

No Hooks.

Return

null. Nothing (null).

Usage

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

WC_Checkout::checkout_form_billing() code WC 9.7.1

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