1 wp_registration_url函数

wp_registration_url()

1.1 函数功能

返回站点注册页面的URL,无函数参数。

1.2 函数返回值

返回站点注册页面的URL。

1.3 函数使用示例

<a href="<?php echo wp_registration_url(); ?>">注册</a>

1.4 函数位置

文件: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.
     */
    return apply_filters( 'register_url', site_url( 'wp-login.php?action=register', 'login' ) );
}