自定义wordpress标签颜色

在functions.php 主题文件夹里加入如下代码:

1
function colorCloud($text) {
1
$text = preg_replace_callback('|<a (.+?)>|i', 'colorCloudCallback', $text);
1
return $text;
1
}
1
function colorCloudCallback($matches) {
1
$text = $matches[1];
1
$colorFull = array('#999','#D8D9A4','#9BB','#EB9','#a3c159','#FEC42D','#6C8C37',
1
'#c2dc15','#3371A3','#888','#00ccff','#FF8080');
1
$color = $colorFull[ mt_rand(0, count($colorFull) - 1)];
1
$pattern = '/style=(\'|\")(.*)(\'|\")/i';
1
$text = preg_replace($pattern, "style=\"color:{$color};$2;\"", $text);
1
return "<a $text>";
1
}
1
add_filter('wp_tag_cloud', 'colorCloud', 1);

有另外的需要大家可以自己修改!