thinkcmf内置了标签表,但是没有相关的代码示例
可以通过在portal_tag_post表里面查到当前文章对应的标签id组合,然后通过这些标签id,查找到相关联的所有文章
<php>
$tag_ids = Db::name('portal_tag_post')->where('post_id', $article['id'])->column('tag
PHP
