Last active
April 14, 2017 02:34
-
-
Save yuliyang/8c3e7d078b871e3ab9dbc78a201367da to your computer and use it in GitHub Desktop.
[WordPress] Custom Fonts in Login Screen
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
<?php | |
function scripts_enqueues_admin() { | |
wp_enqueue_style('typography', '//typography.url/font-file.css', null); | |
} | |
add_action( 'login_enqueue_scripts', 'scripts_enqueues_admin' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment