Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created October 27, 2016 11:14
Show Gist options
  • Select an option

  • Save Restoration/66bfe345d9e94e51ca6251647b4c2b59 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/66bfe345d9e94e51ca6251647b4c2b59 to your computer and use it in GitHub Desktop.
WordPressのログイン時のロゴの変更
<?php
function custom_login_logo() {
echo '<style type="text/css">h1 a { background: url('.get_bloginfo('template_directory').'/images/login-logo.png) 50% 50% no-repeat !important; }</style>';
}
add_action('login_head', 'custom_login_logo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment