(edit: this doesn't work in wordpress 2.2, below code was tested in wordpress 2.0, source: http://www.goudendouche.com)
Ok, now that I've got the custom register and login pages working, I also want a custom profile page. This is done in a different way from the register and login pages, but it's do-able.
First you'll need to make a custom page template for this, so in your theme dir, look for the file called page.php. Make a copy of this, and name it profilepage.php. In the beginning of the file, add the following lines of code:
< ?php
/*
Template Name: Profilepage
*/
//Next, look for lines that go like
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
... some php and html code ... |
And replace this whole bit with the following code: