記事ごとに 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; ?>