wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_registration_url › WordPress Function

Seit3.6.0
Veraltetn/v
wp_registration_url ( Keine Parameter )
Gibt zurück:
  • (string) User registration URL.
Definiert in:
Codex:

Returns the URL that allows the user to register on the site.



Quellcode

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' ) );
}