Skip to content

Instantly share code, notes, and snippets.

@andandehei
Last active January 3, 2016 05:59
Show Gist options
  • Save andandehei/8419899 to your computer and use it in GitHub Desktop.
Save andandehei/8419899 to your computer and use it in GitHub Desktop.
wordpress教程:后台登陆页面添加自定义信息框
<? 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