Here is the final result of my efforts
While digging around in wp-login.php, I noticed that there is a filter for “message”. So, I simply added an “add_filter” function to functions.php as follows:
add_filter ( 'login_message', 'add_login_message' ); function add_login_message () { echo '<div>MY MESSAGE HERE</div>'; }
Revisions
- September 2, 2015 @ 14:26:22 [Current Revision] by PeterLugg
- September 2, 2015 @ 14:26:22 by PeterLugg
Revision Differences
There are no differences between the September 2, 2015 @ 14:26:22 revision and the current revision. (Maybe only post meta information was changed.)
No comments yet.