🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` // set different colors for pages/posts in different statuses add_action( 'admin_footer', 'so_posts_status_color' ); function so_posts_status_color() { ?> <style> .status-draft { background:lightblue!important; } .status-future { background:lightgreen!important; } .status-pending { background:pink!important; } .status-private { background:lightyellow!important; } .status-publish { background:aqua!important; } .status-publish.post-password-required { background:orange!important; } .status-publish.status-sticky { background-color:deepskyblue!important; } </style> <?php } ```