Skip to content

Instantly share code, notes, and snippets.

@JRMorris77
Created January 17, 2017 05:46
Show Gist options
  • Save JRMorris77/aa30aaaa5f44052bcdb641af6a15fe4a to your computer and use it in GitHub Desktop.
Save JRMorris77/aa30aaaa5f44052bcdb641af6a15fe4a to your computer and use it in GitHub Desktop.
<?php
// This changes the color of the login page
function hook_css() {
?>
<style>
body.login {
background: #006699;
}
</style>
<?php
}
add_action('login_enqueue_scripts', 'hook_css');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment