public
Description: Personal blog
Homepage: http://blog.alexgirard.com
Clone URL: git://github.com/alx/alexgirard.com-blog.git
alexgirard.com-blog / wp-register.php
100644 15 lines (13 sloc) 0.316 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
* Used to be the page which displayed the registration form.
*
* This file is no longer used in WordPress and is
* deprecated.
*
* @package WordPress
* @deprecated Use wp_register() to create a registration link instead
*/
 
require('./wp-load.php');
wp_redirect('wp-login.php?action=register');
 
?>