Skip to content

Instantly share code, notes, and snippets.

@nacin
Created February 23, 2012 22:39
Show Gist options
  • Save nacin/1895473 to your computer and use it in GitHub Desktop.
Save nacin/1895473 to your computer and use it in GitHub Desktop.
Highlight scheduled posts (suggestion from Eric Meyer)
<?php
/* Plugin Name: Highlight Scheduled Posts
* Author: Andrew Nacin
* Author URI: http://nacin.com
*/
add_action( 'admin_head-edit.php', 'meyer_highlight_scheduled_posts' );
function meyer_highlight_scheduled_posts() {
echo "<style> tr.status-future { background-color: #ffffe0 }</style>\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment