• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Share Hiển thị Tag màu mè cho Wordpress

Tuzoro

New Member
Các bạn mở chèn dòng này vào chổ nào bạn thích, mình thì chèn ở index.php trên footer.
HTML:
<div id="menu">Từ khóa </div>
<div id="title"><?php wp_tag_cloud(''); ?></div>

Nhớ edit thẻ css phù hợp với css site các bạn.
Nếu vẫn chưa hiện thị tag màu thì các bạn mở functions.php thêm vào:
HTML:
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:#{$color};$2;\"", $text);    return "<a $text>";}
add_filter('wp_tag_cloud', 'colorCloud', 1);

Thế là xong nhé,
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top