怎样将wordpress标签云变为彩色

凡云阁提醒注意在前端加上<?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);

  再次打开网站,你会发现网站侧边栏的标签云是彩色的了。


本文固定链接: http://www.fanyun.ltd/287.html | 凡云阁

fanyun
作者:fanyun 于2017年08月20日发表 & 关键词: ,
除非注明 否则文章均为原创,转载请注明出处: 怎样将wordpress标签云变为彩色 | 凡云阁

怎样将wordpress标签云变为彩色:等您坐沙发呢!

发表评论

亲,不支持纯字母、符号评论哦~