我想在 joomla 中创建博客模块,该模块也在模块中显示图像
I want to create blog module in joomla that shows images as well in the module
我已经创建了文章分类模块,并选择一个分类来创建博客版块。根据我的需要,这些模块是可见的(页面上有 4 列带有介绍文本,但我需要的是,对于这些介绍文本,图像也应该出现在这些块中)。我希望在每个专栏中,文章都应该出现介绍文字和图片
您需要对位于以下位置的文件进行更改:
Modules/mod_article_category/tmpl/default.php
在其他情况下,即未分组,在 li 标签之间的 foreach 循环中添加这些行:
$article_images = $item->images; // Get image parameters of the article
$pictures = json_decode($article_images); // Split the parameters apart
echo "img src='" . $pictures->{'image_intro'} . "' alt='" . $pictures->{'image_intro_alt'} . "'>"; // get the intro image
我已经创建了文章分类模块,并选择一个分类来创建博客版块。根据我的需要,这些模块是可见的(页面上有 4 列带有介绍文本,但我需要的是,对于这些介绍文本,图像也应该出现在这些块中)。我希望在每个专栏中,文章都应该出现介绍文字和图片
您需要对位于以下位置的文件进行更改: Modules/mod_article_category/tmpl/default.php 在其他情况下,即未分组,在 li 标签之间的 foreach 循环中添加这些行:
$article_images = $item->images; // Get image parameters of the article
$pictures = json_decode($article_images); // Split the parameters apart
echo "img src='" . $pictures->{'image_intro'} . "' alt='" . $pictures->{'image_intro_alt'} . "'>"; // get the intro image