Skip to content

Instantly share code, notes, and snippets.

@micjamking
Last active August 29, 2015 14:06
Show Gist options
  • Save micjamking/9eca40fe5be0a65ac291 to your computer and use it in GitHub Desktop.
Save micjamking/9eca40fe5be0a65ac291 to your computer and use it in GitHub Desktop.
[WordPress] Add Custom Admin CSS
function admin_css() {
$path = get_template_directory_uri();
echo "<link rel='stylesheet' href='" . $path . "/admin.css' />";
}
add_action( 'admin_head', 'admin_css' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment