【发布时间】:2019-01-07 00:07:10
【问题描述】:
我想将可点击的Tags 和Category 添加到我的WordPress 帖子模板中。我使用插件在 WordPress 帖子中显示 PHP。
这是我的代码:
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name.' ';
}
}
但我想显示可点击的标签和类别。
我应该使用什么PHP 代码?
【问题讨论】:
标签: php wordpress tags categories