wp_registration_url() WP 1.0
Returns the URL that allows the user to register on the site.
Works based on: site_url()
Basis of: wp_register()
1 time = 0.000103s = fast | 50000 times = 2.12s = fast
Hooks from the function
Return
String. User registration URL.
Usage
wp_registration_url();
Changelog
Since 3.6.0 | Introduced. |
Code of wp_registration_url() wp registration url WP 5.6
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' ) );
}Related Functions
From tag: Link (URL)
- admin_url()
- attachment_url_to_postid()
- build_query()
- comment_link()
- content_url()
- get_comments_link()
- get_comments_pagenum_link()
- get_edit_post_link()
- get_edit_term_link()
- get_home_url()
- get_next_comments_link()
- get_post_embed_url()
- get_post_permalink()