loginradiusloginradius Blog

Wordpress Custom Login Form Part 1

I often come across people and clients who would like to build their custom login, registration, and lost password form in WordPress instead of using the…

I often come across people and clients who would like to build their custom login, registration, and lost password form in WordPress instead of using the default wp-login.php page. It's probably because it's too wordpress-y.

In this tutorial, I will demonstrate how to build a custom login form using the default functionality that wordpress gives us.

Building a WordPress Login Form (Out of the box)

This is what WordPress gives us out of the box.

wp-login
There are quite a few different options available to make a custom login page. You can build a shortcode so that you could simply put [wp-login] or something you like on any page/post, make a page theme file and use that page to attach to a post/page, a widget could be a good solution too, or maybe you'd like to simply edit the existing form and add some pizzazz to it.

I am going to show you all of this tutorial using the page-theme method because it is probably the easiest to implement for beginners. This will also give you an intro into page themes, if your not familiar with it.

To start our theme, you will need to do the following:

  1. Install WordPress
  2. Navigate to your wp-content/themes folder and choose a theme to edit or install a new one
  3. create a file called page-login.php in the theme directory
  4. Next open that file with a text editor of your choosing and add the following at the top of the php file.
<?php
/*
Template Name: Login
*/
 
get_header(); ?>
 
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
 
</div><!-- #content -->
</div><!-- #primary -->
 
<?php get_sidebar(); ?>
<?php get_footer(); ?>

To initialize this page template, make sure to activate the theme you've selected in "Appearance/Themes" in your admin dashboard and then navigate to a page or post. On the right hand side of your page/post editor you should now see a dropdown available for template under "Page Attributes". Change your template to "Login" or to the name that you specified in "Template Name:" and that will attach that page theme to this page/post.

Now we're ready to start editing this page-login.php template file. So first open this file in your favorite editor and Let's get a login page started.

To quickly show you how to get this login on the page Let's paste the following code between the div with id of content.

<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php wp_login_form(); ?>
</div><!-- #content -->
</div><!-- #primary -->

Look at what that small piece of code do

custom-login

Now we need to set some arguments that we can provide to this form to customize it. Let's take a look at the documentation for wploginform()

In that document, it explains all the uses and arguments of wploginform(). Let's use those arguments section and see what happens. Paste the $args section shown in the wordpress doc right above our login form.

<?php $args = array(
'echo' => true,
'redirect' => ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'],
'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
); ?>
<?php wp_login_form( $args ); ?>

It will look the same as the one we did earlier but, by customizing the arguments above, you can customize elements of the login form.

Handling the login form response (Custom)

To handle the Login Form response we need to grab the $_POST parameters and login the user. You can create this as complex as you like, but I will demonstrate a simpler but effective method.

For this action, we'll be using the aftersetuptheme and wp_authenticate. I have added the following two functions within the functions.php file. The first function optionalemailaddress_login searches for a users email address based on their username, with this functionality you can log in using your email address or the username.

The second function, login_user, handles the actual functionality of the login by receiving the $POST parameters and passing them into the wpsignon method.

/**
* optional_email_address_login allows the user
* to log in with a email address as well as a username
* @param string &$username username or email
* @param string &$password password
*/
function optional_email_address_login( &$username, &$password ) {
$user = get_user_by( 'email', $username );
if ( ! empty( $user->user_login ) )
{
$username = $user->user_login;
}
}
// Allows the use of email logins
add_action( 'wp_authenticate', 'optional_email_address_login', 1, 2 );
 
/**
* login_user handles the $_POST array and logs in users
*/
function login_user() {
if ( ! is_user_logged_in() ) {
$creds = array();
$creds['user_login'] = isset( $_POST['log'] ) ? $_POST['log'] : '';
$creds['user_password'] = isset( $_POST['pwd'] ) ? $_POST['pwd'] : '';
$creds['remember'] = isset( $_POST['rememberme'] ) ? true : false;
$user = wp_signon( $creds, false );
 
if ( is_wp_error( $user ) ) {
error_log( $user->get_error_message() );
}
}
}
// Run login_user before headers and cookies are sent
add_action( 'after_setup_theme', 'login_user' );

In this example I have used the default WordPress login form that you could customize and style to your desire. In the next blog, I will be demonstrating how to build a login form that is fully customized. We won’t be using the provided wordpress functions!

Zoie Carnegie

Written by Zoie Carnegie

Graduated from NAIT Digital Media and IT specializing in application development. PHP is my favorite language. I am a continuous learner always trying new languages, applications, frameworks. Passions are Programming, Photography and Travel.

LoginRadius CIAM Platform

Our Product Experts will show you the power of the LoginRadius CIAM platform, discuss use-cases, and prove out ROI for your business.

Book A Demo Today