Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active December 31, 2015 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpspeak/7966755 to your computer and use it in GitHub Desktop.
Save wpspeak/7966755 to your computer and use it in GitHub Desktop.
Add custom message to WordPress login page
<?php
//* Add custom message to WordPress login page
function afn_custom_login_message( $message ) {
if ( empty($message) ){
return "<p>Welcome to our site. Please log in to continue</p>";
} else {
return $message;
}
}
add_filter( 'login_message', 'afn_custom_login_message' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment