是的,您可以将其添加到您的函数中。当前主题的php文件
<?
add_action(\'admin_head\', \'post_color_css\');
function post_color_css() {
//Change the #ccc to what hex color you want
print \'
<style type="text/css">
#the-list .status-publish {background-color: #ccc}
#the-list .status-draft {background-color: #ccc}
#the-list .status-pending {background-color: #ccc}
</style>
\';
}
?>