Skip to content

Instantly share code, notes, and snippets.

@marcosnakamine
Created March 21, 2017 20:24
Show Gist options
  • Save marcosnakamine/84980d0e563bbefa343704b1ebe4d3e3 to your computer and use it in GitHub Desktop.
Save marcosnakamine/84980d0e563bbefa343704b1ebe4d3e3 to your computer and use it in GitHub Desktop.
WordPress - Show login form in custom page
<?php
wp_login_form( array(
'redirect' => home_url(),
'label_username' => 'User',
'label_password' => 'Password',
'id_username' => 'user_login',
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment