pasckr 发表于 2016-5-12 18:17:01

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






                如果你的 WordPress 博客是开放注册,并且你想在注册界面给用户做些自定义信息提示,你可以在当前主题的 functions.php 文件加入以下代码:
add_action('register_form', 'wpjam_register_message');function wpjam_register_message() {    $custom_message = '      <div style=&quot;margin:10px 0;border:1px solid #e5e5e5;padding:10px&quot;>            <p style=&quot;margin:5px 0;&quot;>            欢迎注册我爱水煮鱼。            </p>      </div>';    echo $custom_message;}
页: [1]
查看完整版本: WordPress在注册页面显示自定义消息