根据使用标记的次数,我是否可以在wordpress的background-color
中为标记设置不同的tag cloud
。
示例:使用更多的标签将以深色显示
较少使用的标签将以浅色显示
我知道font-size
可以改为
add_filter('widget_tag_cloud_args','set_cloud_tag_size');
function set_cloud_tag_size($args) {
$args = array('smallest' => 14, 'largest' => 20);
return $args;
}
如何为background-color
标记实现类似行为。
答案 0 :(得分:2)
wp_tag_cloud()是TAG CLOUD
小部件的内置wordpress方法,它接受一个字体大小的数组。您需要在主题中编写一个自定义方法,负责更改background-color
而不是font-size
。
编写此方法应该非常简单,与上述方法类似。您最有可能在wp-includes/widgets.php
找到代码。