function colorCloud($text) {
$text = preg_replace_callback(‘||i’, ‘colorCloudCallback’, $text);
return $text;
}
function colorCloudCallback($matches) {
$text = $matches[1];
$colors = array(‘F99′,’C9C’,’F96′,’6CC’,’6C9′,’37A7FF’,’B0D686′,’E6CC6E’);
$color=$colors[dechex(rand(0,7))];
$pattern = ‘/style=(\’|\”)(.*)(\’|\”)/i’;
$text = preg_replace($pattern, “style=\”display: inline-block; *display: inline; *zoom: 1; color: #fff; padding: 1px 5px; margin: 0 5px 5px 0; background-color: #{$color}; border-radius: 3px; -webkit-transition: background-color .4s linear; -moz-transition: background-color .4s linear; transition: background-color .4s linear;\””, $text);
$pattern = ‘/style=(\’|\”)(.*)(\’|\”)/i’;
return “”;
}
add_filter(‘wp_tag_cloud’, ‘colorCloud’, 1);
主题function.php中合适位置
小诚 哈,不太会啊 ,1471260166,教一下吧!
纸工场 Paper.TV 代码放在footer.php不会显示在侧边栏,而是放到页脚去了!
这个是b站的问题,插件之前是可以支持b站的,后来b站不允许了!
Muze https://www.hwater.site/459