wp_registration_url
Returns the URL that allows the user to register on the site.
Description
(string) wp_registration_url();
Returns (string)
User registration URL.
Usage
if ( !function_exists( 'wp_registration_url' ) ) { require_once ABSPATH . WPINC . '/general-template.php'; } // NOTICE! Understand what this does before running. $result = wp_registration_url();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/general-template.php
- function wp_registration_url() {
- /**
- * Filters the user registration URL.
- *
- * @since 3.6.0
- *
- * @param string $register The user registration URL.
- */
- }