在 WordPress 注册页面添加自定义内容

有时候我们想给注册 WordPress 的用户发个公告什么的,可以在WordPress 注册页面添加内容,方法如下:

后台」→「外观」→「编辑」→ 「functions.php」文件,把下面的代码添加进去:

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

# 更多WordPress技巧,请关注「WordPress专题