实现彩色标签云,颜色随即显示在主题function.php文件中添加下文:<?php function colorCloud($text) { $text = preg_replace_callback('|<a (.+?)>|i', 'colorCloudCallback', $text); return $text; } function colorCloudCallback($matches) { $text = $matches[1]; $color = ...
Read more »