Advertisement
InerciaCreativa

Highlight Scheduled Posts (WordPress)

Feb 23rd, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Highlight Scheduled Posts
  4. Plugin URI: http://www.inerciacreativa.com/
  5. Description: Highlights scheduled posts in the admin post listing
  6. Author: Jose Cuesta
  7. Version: 1.1
  8. Author URI: http://www.inerciacreativa.com/
  9. */
  10.  
  11. if (is_admin()) {
  12.     wp_register_style('hsp', plugin_dir_url(__FILE__) . 'hsp.css');
  13.     wp_enqueue_style('hsp');
  14. }
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement