Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 joomla 3.2 创建博客,我的菜单项类型是类别博客。我已将类别中的 # 篇文章设置为显示。我想要的是数字出现在括号内,如下所示:“General (1)”而不是“General 1”,其中“General”是我的子类别。
找到了解决方案!
这是您需要做的:
创建 com_content/category 的覆盖并打开 blog_children.php。查找第 47 行并更改以下内容
<?php echo $child->getNumItems(true); ?>
到
<?php echo '('; echo $child->getNumItems(true); echo ')'; ?>