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中文網其他相關文章!