Last active
January 3, 2016 05:59
-
-
Save andandehei/8419899 to your computer and use it in GitHub Desktop.
wordpress教程:后台登陆页面添加自定义信息框
This file contains hidden or 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 wenchenhk_login_message( $message ) { | |
if ( empty($message) ){ | |
return "<p class='message'>这个地方加入想要的提示信息</p>"; | |
} else { | |
return $message; | |
} | |
} | |
add_filter( 'login_message', 'wenchenhk_login_message' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment