Created
January 5, 2019 09:08
-
-
Save Tsunamijaan/7430d7d3544bfec443ca56366ba5a3bd to your computer and use it in GitHub Desktop.
To change any wp core file
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
| // 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