是否可以为每篇文章以纯文本形式获取 joomlas blogview 中的文章标签?我找到了一个片段,但它在 html 中呈现文章标签...
<?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; ?>