File | Date | Author | Commit |
---|---|---|---|
nbproject | 2017-09-05 | naa986 | [492cf1] .first commit |
wp-login-form | 2017-09-05 | naa986 | [492cf1] .first commit |
.gitignore | 2017-09-05 | naa986 | [492cf1] .first commit |
README.md | 2017-09-05 | naa986 | [076447] Update README.md |
WordPress Login Form plugin allows you to create a simple login form for use anywhere on the front end of your WordPress site. You can add it to a post, page or your sidebar with a shortcode. It was developed by noorsplugin and is currently being used on hundreds of websites.
In order to create a WordPress login form with the default options all you need to do is use this shortcode:
[wp_login_form]
However, there are other parameters that you can pass in the shortcode to customize it.
An absolute URL to which the user will be redirected after a successful login. For example,
[wp_login_form redirect="https://example.com/mypage/"]
The default is to redirect back to the URL where the form was submitted.
Your own custom ID for the login form. For example,
[wp_login_form form_id="myloginform"]
The default is "loginform".
Your custom label for the username/email address field. For example,
[wp_login_form label_username="Login ID or Email"]
The default is "Username or Email Address".
Your custom label for the password field. For example,
[wp_login_form label_password="Login Password"]
The default is "Password".
Your custom label for the remember field. For example,
[wp_login_form label_remember="Remember"]
The default is "Remember Me".
Your custom label for the form submit button. For example,
[wp_login_form label_log_in="Submit"]
The default is "Log In".
Your own custom ID for the username field. For example,
[wp_login_form id_username="wp_user_login"]
The default is "user_login".
Your own custom ID for the password field. For example,
[wp_login_form id_password="wp_user_pass"]
The default is "user_pass".
Your own custom ID for the remember field. For example,
[wp_login_form id_remember="login_rememberme"]
The default is "rememberme".
Your own custom ID for the form submit button. For example,
[wp_login_form id_submit="login_form_submit"]
The default is "wp-submit".
Specify whether to display the "Remember Me" checkbox in the form. For example,
[wp_login_form remember="0"]
The default is "1" (true).
Your custom placeholder attribute for the username input field. For example,
[wp_login_form value_username="Your Username"]
The default is NULL.
Specify whether the "Remember Me" checkbox in the form should be checked by default. For example,
[wp_login_form value_remember="1"]
The default is "0" (false).
For detailed documentation please visit the WordPress Login Form Plugin page.