海神123

  :: 首页 :: 新随笔 :: :: :: 管理 ::

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

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

 

posted on 2013-01-16 12:25  海神123  阅读(136)  评论(0)    收藏  举报