Skip to content

Instantly share code, notes, and snippets.

@contempoinc
Created October 27, 2016 21:47
Show Gist options
  • Save contempoinc/ef9ab6170763bdee5b4ee96c764e783e to your computer and use it in GitHub Desktop.
Save contempoinc/ef9ab6170763bdee5b4ee96c764e783e to your computer and use it in GitHub Desktop.
Custom Admin CSS
<?php
function custom_admin_css() {
echo '<style>';
echo 'td.status a.for-sale { background: #34495e;}';
echo '</style>';
}
add_action('admin_head', 'custom_admin_css');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment