0
是一個相當新的WordPress的,所以對不起,如果一個noob問題,但如何插入標籤從博客文章到您的WordPress主題與鏈接到帖子?WordPress的:「get_the_tags」功能與鏈接張貼在主題
像這樣:
<a href="{LinkToPost}">{TagName}</a>
我目前顯示標籤我的主題,像這樣:
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ' ';
}
}
?>
感謝
非常感謝隊友! – 2014-10-01 23:18:40