唯一的方法是将标记云作为数组返回,因为每个其他标记参数仍将添加内联字体大小。
以可以使用的数组形式返回云<?php $tag = wp_tag_cloud(\'format=array\' );?>
或在函数中。php过滤器,
//tag cloud custom
add_filter(\'widget_tag_cloud_args\',\'style_tags\');
function style_tags($args) {
$tag = wp_tag_cloud(\'format=array\' );
//var_dump to test output, as you can see you can style this any way you want
var_dump ($tag);
}