首页 > 代码库 > wordpress主题开发:给标签云增加七彩背景色
wordpress主题开发:给标签云增加七彩背景色
本篇文章不是标签而是标签的背景色是七彩的,有点绕口令,还是看图说话,本篇要实现的七彩标签云背景色如图所示:
要实现七彩标签云背景色代码也很简单,代码如下:
- <aside class="tags"><?php wp_tag_cloud(‘smallest=12&largest=12&number=45&order=DESC‘); ?></aside>
把这段代码放在侧边栏sidebar.php即可(smallest,largest表示字号大小,这里统一大小设置为12,number表示显示多少个标签,这里显示45个,order表示标签的排序方式,这里设置为降序,即安装标签含有的文章数量从多到少排序),同时还要在style.css样式表文件中加入以下代码:
- .tags{padding: 12px 13px 10px 15px;}
- .tags a:nth-child(9n){background-color: #4A4A4A;}
- .tags a:nth-child(9n+1){background-color: #428BCA;}
- .tags a:nth-child(9n+2){background-color: #5CB85C;}
- .tags a:nth-child(9n+3){background-color: #D9534F;}
- .tags a:nth-child(9n+4){background-color: #567E95;}
- .tags a:nth-child(9n+5){background-color: #B433FF;}
- .tags a:nth-child(9n+6){background-color: #00ABA9;}
- .tags a:nth-child(9n+7){background-color: #B37333;}
- .tags a:nth-child(9n+8){background-color: #FF6600;}
- .tags a{opacity: 0.80;filter:alpha(opacity=80);color: #fff;display: inline-block;margin: 0 5px 5px 0;padding: 0 6px;line-height: 21px}
- .tags a:hover{opacity: 1;filter:alpha(opacity=100);}
给wordpress博客网站的标签云增加七彩背景色就是这么简单,自己动手,让博客网站炫起来。
wordpress主题开发:给标签云增加七彩背景色
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。