Skip to content

Instantly share code, notes, and snippets.

@nschaeferhoff
Created November 17, 2017 10:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nschaeferhoff/d1a49954f731b3cbd644cec3c94a23cb to your computer and use it in GitHub Desktop.
Save nschaeferhoff/d1a49954f731b3cbd644cec3c94a23cb to your computer and use it in GitHub Desktop.
function style_tool_bar() {
echo '
<style type="text/css">
#wpadminbar {
background: blue;
}
</style>';
}
add_action( 'admin_head', 'style_tool_bar' );
add_action( 'wp_head', 'style_tool_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment