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

I like to have login and password recovery managed by my own forms and embed them into my theme.

I'm using the well written Jeff Farthing's plugin "Theme My Login" on some of my projects. But I would like to write my own custom functions and avoid the use of a plugin.

However I would also like to learn more on the process of making custom forms for logging in. While I might spending some time dissecting the plugin as suggested in an answer to a similar question (How to create custom LOGIN and REGISTRATION forms?), I would like to know if there's any good tutorial, wiki or codex page which I might have missed that digs more or less deeply into user forms writing to have a better understanding of the subject.

I'd rather have the answer "no, there isn't any" than just "stick to the plugin", which is kinda obvious and repeated - after all, me and some others reading might have missed something different and new such as a well written article or tutorial.

cheers!

share|improve this question
Do you ask for a list of links? That would be a shopping question. Please ask for actual problems you have. – toscho Jul 31 '12 at 5:54
I'll try not to be obvious then: The medium is the message. – brasofilo Jul 31 '12 at 7:03

1 Answer

up vote 1 down vote accepted

Having done some research into Wordpress logins in the past, this is one of the few (possibly only?) tuts I could find where the author actually created a new login/register form.

http://digwp.com/2010/12/login-register-password-code/

Even so, he still uses the generic Wordpress wp-login.php code.

Re-coding the entire process is a big task. If you dig into theme-my-login you will see that it's a few thousand lines of code.

wp_update_user & wp_insert_user might get you started!

share|improve this answer
thanks gArn this is the sort of thing I was looking for and I failed to find using Google before... therefore I made a question here, thanks for getting to the point and sharing your resource with me (and the rest of the readers). Update: I gave a closer look, eventually doesn't cover everything and doesn't explain certain things I was looking for (well I guess I will have to dig and examine single articles in the codex more carefully), however it's sort of good that it uses the generic wp-login, I don't want to build something too complicated... maybe your link is a good starting point – Fulvio Jul 31 '12 at 17:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.