我需要将文章的图像和文本分开,问题是它们在数据库的一个字段中,那么我怎样才能在视图中将图像与文本分开?因为我不能把图像和文字放在一起,一团糟
<? foreach ($list as $item) : ?>
<?
$year = date('Y', strtotime($item->created));
$month = date('m', strtotime($item->created));
$day = date('d', strtotime($item->created));
$shortDescription = cutString($item->introtext, 100);
?>
<div class="footerItem">
<?= $day; ?>-<?= $month; ?>-<?= $year; ?>
<p><a href="<?= $item->link; ?>"><?= $item->title; ?></a></p>
<p>
<?= $shortDescription; ?>
</p>
</div>
<?php endforeach; ?>
所以我需要像这样 $item->image 放置图像 - 这就是我想要的,但是在 joomla latestnews_mod 中,没有图像字段,我不知道是否需要自己编写或编辑这个模块,或者我需要为此使用其他模块?而且我无法获得我需要的字段 $item->category,只有 CAT_ID,我怎样才能获得类别字段?