覆盖博客介绍图片


8

在尝试覆盖介绍图像在博客布局中的显示方式(我想向图像添加一个类)时,我在以下代码中遇到了此代码templates/MYTEMPLATE/html/com_content/category/blog_item.php

<?php echo JLayoutHelper::render('joomla.content.intro_image', $this->item); ?>

覆盖此错误并控制如何显示我的简介图像的最佳/正确方法是什么?


Answers:


9

您可能要匹配作为模板中第一个参数发送的路径,位于 templates/*your_template*/html/layouts/

因此,在例子中,你列出<?php echo JLayoutHelper::render('joomla.content.intro_image', $this->item); ?>一份文件目前layouts/joomla/content/intro_image.phptemplates/*your_template*/html/layouts/joomla/content/intro_image.php它应该在您的模板,而不是默认的布局使用的版本。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.