【编者按】:网学网网络知识为您提供WordPress在注册页面显示自定义消息参考,解决您在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;
}
Wordpress下载:
本文转自:http://fairyfish.net/m/display-a-custom-message-on-wordpress-registration-page/