woocommerce_checkout_login_form()WC 1.0

Output the WooCommerce Checkout Login Form.

No Hooks.

Return

null. Nothing (null).

Usage

woocommerce_checkout_login_form();

woocommerce_checkout_login_form() code WC 8.7.0

function woocommerce_checkout_login_form() {
	wc_get_template(
		'checkout/form-login.php',
		array(
			'checkout' => WC()->checkout(),
		)
	);
}