添加这段代码到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 }
分类:新闻资讯