woocommerce_checkout_login_form()
Output the WooCommerce Checkout Login Form.
No Hooks.
Returns
null. Nothing (null).
Usage
woocommerce_checkout_login_form();
woocommerce_checkout_login_form() woocommerce checkout login form code WC 10.6.2
function woocommerce_checkout_login_form() {
wc_get_template(
'checkout/form-login.php',
array(
'checkout' => WC()->checkout(),
)
);
}