有时候我们想给注册 的用户发个公告什么的,可以在 注册页面添加内容,方法如下:
「后台」→「外观」→「编辑」→ 「functions.php」文件,把下面的代码添加进去:
add_action('register_form', 'wpjam_register_message');
function wpjam_register_message() {
$custom_message = '
请不要设置过于简单的密码,避免被盗取。
';
echo $custom_message;
}
# 更多技巧,请关注「专题」