如果你的 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;
}
标签:wordpress教学