Demo
Cách làm:
Đầu tiên các bạn chèn đoạn code sau vào file functions.php:
Sau đó chèn đoạn code sau vào nơi các bạn muốn hiển thị, ví dụ chèn vào cuối cùng của sidebar.php:
Thay đổi các con số trên cho đúng theo ý bạn.
Đầu tiên các bạn chèn đoạn code sau vào file functions.php:
PHP:
//Start of colorful tag cloud
function colorCloud($text) {
$text = preg_replace_callback('|<a (.+?)>|i', 'colorCloudCallback', $text);
return $text;
}
function colorCloudCallback($matches) {
$text = $matches[1];
$color = dechex(rand(0,16777215));
$pattern = '/style=(\'|\")(.*)(\'|\")/i';
$text = preg_replace($pattern, "style=\"color:[URL=http://buidoi.net/usertag.php?do=list&action=hash&hash=%7B%24color%7D]#{$color}[/URL]$2;\"", $text);
return "<a $text>";
}
add_filter('wp_tag_cloud', 'colorCloud', 1);
//End of colorful tag cloud
PHP:
<?php wp_tag_cloud( 'smallest=8&largest=24&number=20' ); ?>