1 在用户注册页面显示自定义提示信息

在网站开放注册的情况下,站长经常需要在用户注册页面显示一些自定义提示信息展现给注册用户,比如说用户可以使用的注册邮箱类型,用户名限制等等,我们可以在主题的function.php中加入以下代码增加提示信息:

function stubbornhuang_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;
}
add_action('register_form', 'stubbornhuang_register_message');

效果:

WordPress – 在用户注册页面显示自定义提示信息-StubbornHuang Blog