• 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.

Hiển thị tag ngẫu nhiên cực đẹp cho wordpress không cần dùng plugin

Admin

Well-Known Member
Staff member
Administrator
Demo
tuoitrevnbiz10042013.png
Cách làm:

Đầ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
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:


PHP:
<?php wp_tag_cloud( 'smallest=8&largest=24&number=20' ); ?>
Thay đổi các con số trên cho đúng theo ý bạn.
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top