wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_registration_url › WordPress Function

Since3.6.0
已弃用n/a
wp_registration_url ( 没有参数 )
返回:
  • (string) User registration URL.
定义在:
文档:

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



源码

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