[WordPress外掛]3D Flash 標籤雲

/ 分類: , / 0 則回應

標籤: , ,

WP-Cumulus 3D標籤雲中文版

插件說明:由Flash製成3D效果的標籤雲,會旋轉,非常酷炫

本站下載wordpress-4.0-zh_TW.tar

下載頁面: ﹝官方下載頁面﹞ 英文版(需自行中文化)

1.將下載的檔案解壓縮直接上傳到/wp-content/plugins/目錄下。

2.打開後台外掛並啟用wp-cumulus 。

3.打開外觀-小工具,將wp-cumulus 拉到側邊欄位即可。


因為原本安裝的WP-Cumulus標籤雲,本身是無法針對個別文字設定顏色的.必須在檔案裡添加一小段程式碼才行.依照底下步驟即可

首先找到您佈景裡wp/wp-content/themes/佈景名/function.php文件里面將底下加在最後即可
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);

展示效果如下
colorcold_title

作者:awei
一個從純樸鄉下 輾轉搬到現在繁華的都市 住在四周都是百貨公司與商店林立的便利世界裡 我只是想拍拍照 記錄一下這個我居住的星球 力量雖然渺小 但是我有我想做的一些事 貓咪慵懶的動作 花草的靜態之美 建築的偉大背景 等等.... If I like a moment, for me, personally, I don't like to have the distraction of the camera. I just want to stay in it.

發表留言