Provides a simple login form for use anywhere within WordPress. By default, it echoes the HTML immediately. Pass array(‘echo’=>false) to return the string instead.
Signature
wp_login_form( $args = array() )
- args
- (array) Configuration options to modify the form output.
Default:array()
Return
(string|null) String when retrieving, null when displaying.
Source
WP Trac GitHub Bitbucketfunction wp_login_form( $args = array() ) { $defaults = array( 'echo' => true, 'redirect' => ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], // Default redirect is back to the current page 'form_id' => 'loginform', 'label_username' => __( 'Username' ), 'label_password' => __( 'Password' ), 'label_remember' => __( 'Remember Me' ), 'label_log_in' => __( 'Log In' ), 'id_username' => 'user_login', 'id_password' => 'user_pass', 'id_remember' => 'rememberme', 'id_submit' => 'wp-submit', 'remember' => true, 'value_username' => '', 'value_remember' => false, // Set this to true to default the "Remember me" checkbox to checked ); $args = wp_parse_args( $args, apply_filters( 'login_form_defaults', $defaults ) ); $form = ' <form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="' . esc_url( site_url( 'wp-login.php', 'login_post' ) ) . '" method="post">23 more lines...
Link here
-
URL
http://queryposts.com/function/wp_login_form/ -
HTML
<a href='http://queryposts.com/function/wp_login_form/'>wp_login_form()</a> -
Markdown
[wp_login_form()](http://queryposts.com/function/wp_login_form/) -
BBCode
[url=http://queryposts.com/function/wp_login_form/]wp_login_form()[/url]