Skip to content

Instantly share code, notes, and snippets.

@yuliyang
Last active April 14, 2017 02:34
Show Gist options
  • Save yuliyang/8c3e7d078b871e3ab9dbc78a201367da to your computer and use it in GitHub Desktop.
Save yuliyang/8c3e7d078b871e3ab9dbc78a201367da to your computer and use it in GitHub Desktop.
[WordPress] Custom Fonts in Login Screen
<?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