首頁 >CMS教程 >&#&按 >WordPress如何實現彩色標籤雲

WordPress如何實現彩色標籤雲

angryTom
angryTom原創
2019-11-16 11:51:092378瀏覽

WordPress如何實現彩色標籤雲

WordPress如何實作彩色標籤雲

彩色標籤雲我們在很多的網站都可以看到此類效果,這裡就來實現wordpress增加彩色標籤雲效果。

這種彩色標籤雲效果可以透過修改Simple Tags來顯示。

1.在simple-tags.client.php中先找到如下程式碼:

function getColorByScale($scale_color, $min_color, $max_color)

2.註解掉(或刪除)getColorByScale這個function中的以下語句:

$scale_color = $scale_color / 100; 
$minr = hexdec(substr($min_color, 1, 2)); 
$ming = hexdec(substr($min_color, 3, 2)); 
$minb = hexdec(substr($min_color, 5, 2)); 
$maxr = hexdec(substr($max_color, 1, 2)); 
$maxg = hexdec(substr($max_color, 3, 2)); 
$maxb = hexdec(substr($max_color, 5, 2)); 
$r = dechex(intval((($maxr - $minr) * $scale_color) + $minr)); 
$g = dechex(intval((($maxg - $ming) * $scale_color) + $ming)); 
$b = dechex(intval((($maxb - $minb) * $scale_color) + $minb));

3.加上以下程式碼:

//Colorful Tag Cloud start 
$r = dechex(rand(0,255)); 
$g = dechex(rand(0,196)); 
$b = dechex(rand(0,255));

Colorful Tag Cloud end至於要顯示多少個標籤,怎麼排列,熱門標籤和普通標籤分別為多少大小的字體,可以在背景的Simple Tags的選項中設定。

推薦教學:WordPress教學

#

以上是WordPress如何實現彩色標籤雲的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多