我搜索过谷歌,但似乎找不到我希望实现的目标。我正在尝试显示没有超链接的标记,即:
<a href="blalblalba.com/tag/tagname/">tagname</a>
变成这样:
tagname
这可能吗?
最合适的回答,由SO网友:jimihenrik 整理而成
get_the_tags 法典页上说
以下示例显示分配给帖子的每个标记的标记名(这类似于使用\\u tags(),但不将每个标记链接到标记视图,并且使用空格而不是逗号):
<?php $posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . \' \';
}
} ?>
试过吗?:)