对于Wordpress而言,这是相当新的,如果一个noob问题,那么很抱歉,但是如何将博客文章中的标签插入到Wordpress主题中,并附带帖子的链接?
像这样:<a href="{LinkToPost}">{TagName}</a>
我目前正在主题中显示标签:
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ' ';
}
}
?>
谢谢
答案 0 :(得分:1)
我不确定我是否理解正确,但如果您需要指向帖子本身的链接,则可以使用get permalink()
。如果您需要指向标记的链接,则可以使用get_tag_link()
。
http://codex.wordpress.org/Function_Reference/get_permalink http://codex.wordpress.org/Function_Reference/get_tag_link