如何在页面顶部显示特定标签?

时间:2017-09-27 21:28:24

标签: css wordpress plugins custom-wordpress-pages

亲爱的开发者社区,您好!

我在我的博客上工作,试图解决问题。我试图找到一种方法,只在标签页面上显示一些标签,以便我的访问者可以轻松地看到他们感兴趣的内容。

我已经在侧边栏中使用了一个小工具来显示所有标签。根据主题,我们的想法是在我的页面上显示4到5个。

例如,在“我的旅行”中,对于“法国”部分,我想展示“发现”,“远足”,“食物”,“Vidéos”,“照片”。

What I would like to do, see in black labels 非常感谢你的帮助 !! 百合

2 个答案:

答案 0 :(得分:0)

.topLabel {
  background: black;
  color: white;
  font-family: Arial;
  padding: 4px;
  float: left;
  margin-right: 4px;
  cursor: pointer;
}

.topLabel:hover {
  background: grey;
}
<a class="topLabel">Hiking</a>
<a class="topLabel">Food</a>
<a class="topLabel">Photos</a>
<a class="topLabel">Videos</a>
<a class="topLabel">Discovery</a>
 

也许这可以帮到你。

答案 1 :(得分:0)

使用$post_tags = get_the_tags(); if ($post_tags) { foreach($post_tags as $tag) { echo $tag->name . ' '; } }

访问帖子标签
<? extends ItfA & ItfB>