woocommerce_login_form( array $args = array() )

Output the WooCommerce Login Form.


Description Description


Parameters Parameters

$args

(Optional) Arguments.

Default value: array()


Top ↑

Source Source

File: includes/wc-template-functions.php

	function woocommerce_login_form( $args = array() ) {

		$defaults = array(
			'message'  => '',
			'redirect' => '',
			'hidden'   => false,
		);

		$args = wp_parse_args( $args, $defaults );

		wc_get_template( 'global/form-login.php', $args );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.