Skip to content

Instantly share code, notes, and snippets.

@WordPress-Handbuch
Last active April 11, 2019 06:16
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 WordPress-Handbuch/2e3378239a8a1759aa4240ddd770e388 to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/2e3378239a8a1759aa4240ddd770e388 to your computer and use it in GitHub Desktop.
Add a header text to the WordPress login page
function wh_add_login_message( $message ) {
return $message . '<h2>Sprich Freund und tritt ein.</h2>';
}
add_filter( 'login_message', 'wh_add_login_message' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment