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

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

自定义注册页面(网页自动注册)  使用技巧 注册 自定义 页面 新闻资讯 第1张

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 }

转载请说明出处
知优网 » 自定义注册页面(网页自动注册)

发表评论

您需要后才能发表评论