Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created January 5, 2019 09:08
Show Gist options
  • Select an option

  • Save Tsunamijaan/7430d7d3544bfec443ca56366ba5a3bd to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/7430d7d3544bfec443ca56366ba5a3bd to your computer and use it in GitHub Desktop.
To change any wp core file
// Custom login
function custom_login() {
$files = '<link rel="stylesheet" href="'.get_bloginfo('template_directory').'/css/login.css" />';
echo $files;
}
add_action('login_head', 'custom_login');
Or=======
function my_login_stylesheet() {
wp_enqueue_style( 'custom-login', get_template_directory_uri() . '/style-login.css' );
}
add_action( 'login_enqueue_scripts', 'my_login_stylesheet' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment