Joomla,强制渲染所有标签

时间:2015-09-24 06:49:23

标签: joomla tags render

在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(因为没有选择项目)

有没有办法实现这个目标?

谢谢!

0 个答案:

没有答案