There is

wp_login_url, wp_logout_url, but what what about registration url?

Is there standard way to get link to registration? I need to display a link to registration page with further redirect to previous page.

PS I am using my theme login.

link|improve this question

Have updated the answer to match your original question ;) – johnhunter Mar 4 '11 at 10:04
feedback

2 Answers

up vote 4 down vote accepted

The following will return the registration url:

<?php

    echo site_url('/wp-login.php?action=register');

?>

UPDATE:

To get the registration url with a redirect to the current page use:

<?php

    echo site_url('/wp-login.php?action=register&redirect_to=' . get_permalink());

?>
link|improve this answer
feedback

In case of hosting your wordpress site in a subfolder (e.g.: mysite.com/myblog) you also need to include your site's url as follows:

<?php echo get_site_url() . "/wp-login.php?action=register" ?>

--> http://mysite.com/myblog/wp-login.php?action=register

Otherwise you will be redirected to a non-existing page

--> http://mysite.com/wp-login.php?action=register

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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