zl程序教程

您现在的位置是:首页 >  其他

当前栏目

WordPress 技巧:在注册页面显示自定义消息

注册消息WordPress 技巧 显示 页面 自定义
2023-06-13 09:18:34 时间

如果你的 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;
}