Change the color of one or more specific items on the Pages list (Admin)
Would be something like this, where 3 in #post-3 is the ID of the page (untested): add_action( ‘admin_print_styles-edit.php’, static function() { ?> <style>.table-view-list.pages #post-3 a.row-title { color: red; }</style> <?php } );