wp_registration_url() – Returns the URL that allows the user to register on the site.
You appear to be a bot. Output may be restricted
Description
Returns the URL that allows the user to register on the site.
Usage
$string = wp_registration_url();
Parameters
Returns
string User registration URL.
Source
File name: wordpress/wp-includes/general-template.php
Lines:
1 to 10 of 10
function wp_registration_url() { /** * Filters the user registration URL. * * @since 3.6.0 * * @param string $register The user registration URL. */ return apply_filters( 'register_url', site_url( 'wp-login.php?action=register', 'login' ) ); }