Last active
April 11, 2019 06:16
-
-
Save WordPress-Handbuch/2e3378239a8a1759aa4240ddd770e388 to your computer and use it in GitHub Desktop.
Add a header text to the WordPress login page
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
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