💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` // 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 } ```