Skip to content

Instantly share code, notes, and snippets.

@mrfoxtalbot
Last active April 30, 2021 06:22
Show Gist options
  • Save mrfoxtalbot/15d326cf154a75b7cd95b4b0c4aaa0b4 to your computer and use it in GitHub Desktop.
Save mrfoxtalbot/15d326cf154a75b7cd95b4b0c4aaa0b4 to your computer and use it in GitHub Desktop.
Insert custom CSS styles in the WordPress Admin wp-admin
add_action('admin_head', 'mrfox_custom_admin_styles');
function mrfox_custom_admin_styles() {
echo '<style>
.foo {
color:red;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment