Chủ Nhật, 7 tháng 7, 2013

Joomla Category blog hiển thị image - tiêu đề - intro text


Vào file com_content/views/category/blog_item.php
Hiệu chỉnh
<?php echo $this->item->introtext; ?>
//line 41 của joomla 3. còn 2.5 thì ko nhớ
Thành đoạn sau
<?php
if(preg_match('/<\s*img[^>]+>/Ui',$this->item->introtext,$matches)){
$image=$matches[0];
$text=str_replace($image,'',$this->item->introtext);
echo '<div class="imageintro_container">'.$image.'</div>';
echo '<h3 class="title">'.$this->item->title.'</h3>';
echo '<div class="introtext_container">'.$text.'</div>';
}?>

0 nhận xét:

Đăng nhận xét