Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function custom_login_message() { | |
$message = '<p class="message">ようこそ。登録はお済ですか?登録前に<a href="">利用規約</a>に同意をしてくださいね</p><br />'; | |
return $message; | |
} | |
add_filter('login_message', 'custom_login_message'); | |
?> |
Screen shot
Note
Description | ログイン画面にテキストメッセージを追加する |
---|---|
WordPress Ver. | 3.3.1 |
Via | Add a custom message to the login screen |