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