是否有可能以純文本形式爲每篇文章獲取joomlas博客視圖中的文章標籤?我發現一個片段,但它呈現在html中的文章標籤...Joomla在博客視圖中獲取文章標籤
<?php if ($params->get('show_tags', 1) && !empty($this->item->tags)) : ?>
<?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
<?php echo $this->item->tagLayout->render($this->item->tags->itemTags); ?>
<?php endif; ?>