禁用wp_tag_cloud()输出内联css

时间:2011-07-13 作者:Ben Matewe

有没有办法禁止Wordpress wp\\u tag\\u cloud()输出内联CSS?

1 个回复
SO网友:Wyck

唯一的方法是将标记云作为数组返回,因为每个其他标记参数仍将添加内联字体大小。

以可以使用的数组形式返回云<?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);
}

结束

相关推荐