打开呈现类别帖子的页面,并在适当的位置(在运行循环之前)编写以下代码
<?php
$catid = get_cat_id();
$color = "#222"; //default;
if ($catid == $pinkCategoryId) $color = "#8B0A50";
else if ($catid == $redCategoryId) $color = "#FF0000";
?>
<style type = \'text/css\'>
a { color: <?php echo $color;?>; }
</style>
现在根据需要调整上面的代码块
您也可以按类别名称而不是类别id使用它,只需将get\\u cat\\u id更改为get\\u the\\u category(),它将返回当前类别名称。然后您可以按原样执行任务的其余部分