让wp_tag_cloud看起来像云(单词应重叠)

时间:2012-01-14 09:20:55

标签: php wordpress

我可以让wp_tag_cloud(http://codex.wordpress.org/Function_Reference/wp_tag_cloud)看起来像这两张照片吗?

今天的情况如下:网站

这是我正在使用的php:

<?php 
  $args = array(
    'taxonomy'  => 'category', 
   ); 

  wp_tag_cloud($args);
?>

但是当我添加'orderby'=&gt;例如,'name',页面变为空白。

Picture one

Picture two http://paul.kedrosky.com/WindowsLiveWriter/ATagCloudintheLifeofCNBC_E14B/cnbc-cloud_thumb.png

2 个答案:

答案 0 :(得分:1)

标签云 WILL 看起来像这样,但它取决于您的主题,或者更准确地说,取决于分配给#tag_cloud ID的CSS。

如果您的标签云现在看起来不同,则应编辑您的css以满足您的需求,例如:

#tag_cloud a:link {
    font-family: georgia;
    color: red;
}

#tag_cloud a:hover {
    font-family: georgia;
    color: green;
}

#tag_cloud a:visited {
    font-family: georgia;
    color: blue;
}

另外,wp_tag_cloud()函数可以接收参数,比如

    smallest'                  => 8, 
    'largest'                   => 22,
    'unit'                      => 'pt', 
    'number'                    => 45,  

其中最小的是最小标签的大小(不太频繁),bigt是最大的大小,单位是用于该数值大小的单位,数字是云中的标签数。 可能你的主题已经修改了css或函数参数。

您可以在此处阅读更多内容:http://codex.wordpress.org/Function_Reference/wp_tag_cloud

如果您不熟悉CSS或PHP,我建议您阅读更多内容,或发布问题的直接链接,并请某人帮助您解决问题。

答案 1 :(得分:0)

解决方案变成了这样:

.tag-link-10 {font-size:13px!important; text-transform:lowercase;} / * Annons / .tag-link-5 {font-size:16px!important; text-transform:uppercase; font-style:italic;} / Film * /

我必须分别设置每个标签的样式。虽然我没有让它们重叠。