Skip to content

Instantly share code, notes, and snippets.

@directionforward
Created September 6, 2021 17:43
Show Gist options
  • Save directionforward/3ec373e9e0a12bceda3c950d92024bff to your computer and use it in GitHub Desktop.
Save directionforward/3ec373e9e0a12bceda3c950d92024bff to your computer and use it in GitHub Desktop.
Add custom CSS to WordPress admin via functions.php
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>
/* styles here */
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment