首页    >    新闻资讯    >   自定义注册页面

自定义注册页面

添加这段代码到WordPress主题的functions.php,将在用户注册页面显示自定义的内容。

01    add_action('register_form', 'register_message');
02    function register_message() {
03        $html = '
04            <div style="margin:10px 0;border:1px solid #e5e5e5;padding:10px">
05                <p style="margin:5px 0;">
06            Joining this site you agree to the following terms. Do no harm!
07            </p>
08            </div>';
09        echo $html;
10    }

分类:新闻资讯

标签:, , ,

* 版权声明:作者WordPress啦! 转载请注明出处。