Advertisement
miriamdepaula

WordPress: Lista de posts com cores diferentes de acordo com o status

Sep 7th, 2011
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. add_action('admin_footer','posts_status_color');
  2. function posts_status_color(){
  3. ?>
  4. <style>
  5. .status-draft{background: #FCE3F2 !important;}
  6. .status-pending{background: #87C5D6 !important;}
  7. .status-publish{/* Nenhum background. Manter as cores alternadas */}
  8. .status-future{background: #C6EBF5 !important;}
  9. .status-private{background:#F2D46F;}
  10. </style>
  11. <?php
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement