在blog_item中,我能够使用以下内容呈现标记:
if ($params->get('show_tags', 1) && !empty($this->item->tags)) :
$this->item->tagLayout = new JLayoutFile('joomla.content.tags');
echo $this->item->tagLayout->render($this->item->tags->itemTags);
endif;
但是,在一种情况下,我需要在博客中呈现所有可用的标签,而不需要$ this-item(因为没有选择项目)
有没有办法实现这个目标?
谢谢!