如何在wordpress中显示标签链接
在每篇文章之后,我都会显示标签
<?php
global $post;
foreach(get_the_tags($post->ID) as $tag) {
echo '<li>'.$tag->name.'</li>';
}
?>
现在,我需要将标签显示为不仅是文本,还需要显示为链接,该链接将显示按给定标签过滤的所有帖子,就像在 stackoverflow 上单击问题下方的标签时一样。
- 怎样制作呢?
- 将使用什么页面模板来显示搜索结果?
After every post I am displaying tags
<?php
global $post;
foreach(get_the_tags($post->ID) as $tag) {
echo '<li>'.$tag->name.'</li>';
}
?>
Now I need to display tag not just as text but as a link that would display all posts filtered by given tag, just like on stackoverflow when you click a tag below the question.
- How to make it?
- What page template will be used to display search results?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将使用什么页面模板来显示搜索结果:对于搜索模板,您可以关注我了解标签模板Tag_Template
What page template will be used to display search results : for the search template you can follow me for the tags template Tag_Template