שינוי צבע האדמין לפי סטטוס העמוד/פוסט

PHOTO EMBED

Thu Feb 10 2022 22:15:03 GMT+0000 (Coordinated Universal Time)

Saved by @Shesek

add_action('admin_footer','posts_status_color');
function posts_status_color(){
?>
<style>
.status-draft{background: #FCE3F2 !important;}
.status-pending{background: #87C5D6 !important;}
.status-publish{/* no background keep wp alternating colors */}
.status-future{background: #C6EBF5 !important;}
.status-private{background:#F2D46F;}
</style>
<?php
}
content_copyCOPY

https://www.isitwp.com/change-admin-postpage-color-by-status-draft-pending-published-future-private/