wordpress在注冊(cè)頁(yè)面顯示自定義消息

字號(hào):


    如果你的 wordpress 博客是開(kāi)放注冊(cè),并且你想在注冊(cè)界面給用戶做些自定義信息提示,你可以在當(dāng)前主題的 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;>
    歡迎注冊(cè)我愛(ài)水煮魚(yú)。
    </p>
    </div>';
    echo $custom_message;
    }