近来很多网站不用论坛,都用Wordpress做多用户了,开放网站注册的也就多了,默认的Wordpress注册页面比较简单,如果要自己自定义,要么新建单独的注册页面,要么用插件方式添加,当然还有就是改主题的functions.php文件。

我们很多客户的网站就是多用户,所以经常遇到一些需求,也就随手记录下,比如要在注册页面添加一些文字,提示用户网站的一些规则之类的,就直接改functions.php文件:

//添加自定义文字
add_action('register_form', 'register_message');
function register_message() {
    $html = '
        <div style="margin:10px 0;border:1px solid #e5e5e5;padding:10px">
            <p style="margin:5px 0;">
        文字(也可以改成链接,放用户注册协议之类的)
<a href="https://www.jingxialai.com/" target="_blank">注册协议</a>
        </p>
        </div>';
    echo $html;
}

或者

//添加自定义文字
add_action('register_form', 'zdy_register_message');
function zdy_register_message() {
    $custom_message = '
        <div style="margin:10px 0;border:1px solid #e5e5e5;padding:10px">
            <p style="margin:5px 0;">
           文字
            </p>
        </div>';
    echo $custom_message;
}

样式自己根据需要改就行,代码来自国外的网站,如果遇到有的问题不能解决,就用英文到谷歌搜索。

参考:https://www.isitwp.com/display-custom-message-user-registration-page/

标签为: