Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

How to display the wordpress User registration form ( the form that appears in "www.mywebsite.com/wp-register.php" page) in the front end of my blog.

I have customised the Registration form but dont know how to call that form in the front end page. Any support will be really great help .

Thanks in advance. :)

share|improve this question

7 Answers

this Article provides a greate tutorial on how to create you own frontend register/login/restore password forms.

or if you are looking for a plugin then i've used these before and can recomend them:

share|improve this answer

I found an excellent Tutsplus article on Making a fancy Wordpress Register Form from scratch. This spends quite a lot of its time on styling the form, but has the following fairly simple section on the required wordpress code:

Step 4. WordPress

There is nothing fancy here; we only require two WordPress snippets, hidden within the wp-login.php file.

The first snippet:

<?php echo site_url('wp-login.php?action=register', 'login_post') ?>  

And:

<?php do_action('register_form'); ?>
share|improve this answer

Cristian from Cosmolabs have post a great tutorial with source files that give you the ability to build a front-end User Profile, Login and Register templates.

http://www.cozmoslabs.com/2010/05/31/wordpress-user-registration-template-and-custom-user-profile-fields/

share|improve this answer

Best solution i found is Theme My Login plugin.

share|improve this answer

You can use the Profile Builder plugin

It lets you customize your website by adding front-end forms for login, register and edit-profile through the use of shortcodes.

share|improve this answer

The Login with Ajax plugin/widget works well. I use it on a lot of my WP sites.

share|improve this answer

for sidebar login: login-with-ajax

for main login/registration page: S2Member

share|improve this answer

protected by toscho Jul 19 '12 at 6:44

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.