Joomla 在类别页面上显示子类别图像?

发布于 2025-01-06 08:46:00 字数 377 浏览 1 评论 0原文

除了创建另一个 MYSQL 连接之外,是否有办法在浏览父类别页面时检索子类别图像?

例如:

  • 主类别(设置类别为博客)
    • 子类别 1(基本选项图像字段中设置的图像)
    • 子类别 2(基本选项图像字段中设置的图像)
    • 子类别 3(基本选项图像字段中设置的图像)
    • ...

现在,当我浏览“主类别”时,它显示类别标题和子类别的描述,但我找不到任何“正常”方式来检索我在基本选项中设置的图像。

我可以工作的唯一方法是创建另一个 MYSQL 调用并从数据库检索图像,但我想知道是否还有另一种更有效的方法。

我使用 Joomla 2.5。

谢谢!

Is there a way, beside creating yet another MYSQL connection, to retrieve subcategory image while browsing parent category page?

For example:

  • Main category (set as category as blog)
    • Subcategory 1 (image set in Basic options image field)
    • Subcategory 2 (image set in Basic options image field)
    • Subcategory 3 (image set in Basic options image field)
    • ....

Now, when i browse 'Main category', it display categories title and description of subcategories, but I cant find any 'normal' way to retrieve image that i set in basic option.

The only way that I can make to work is to create another MYSQL call and retrieve image from database, but I would like to know if there is another more effective way.

Im using Joomla 2.5.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画中仙 2025-01-13 08:46:00

我建议您覆盖内容的输出,以便您可以添加一些代码来输出图像。

复制:

joomla/components/com_content/views/category/tmpl/blog_children.php

至:

joomla/templates/yourtemplate/html/com_content/category/blog_children.php

然后编辑新的覆盖文件,如下所示:

<span class="item-title"><a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($child->id));?>">
    <?php echo $this->escape($child->title); ?></a>
</span>

添加:

<div class="item-image">
    <?php echo '<img src="'.json_decode($child->params)->image . '" />'; ?>
</div>

请参阅 Joomla 文档 用于组件输出类型和布局覆盖。

I suggest you override the output of the content so that you can add some code to output your images.

Copy:

joomla/components/com_content/views/category/tmpl/blog_children.php

To:

joomla/templates/yourtemplate/html/com_content/category/blog_children.php

Then edit your new override file, just below:

<span class="item-title"><a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($child->id));?>">
    <?php echo $this->escape($child->title); ?></a>
</span>

Add:

<div class="item-image">
    <?php echo '<img src="'.json_decode($child->params)->image . '" />'; ?>
</div>

See Joomla docs for Component Output Types and Layout Overrides.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文