Page 1 of 1

how to add faq in first page

PostPosted: 18 Nov 2014, 09:50
by saha66
Hi,

I want to know how to add some faq articles in first page the same as news.

I want to add the 3 last articles in the first page.

Thanks in advance

Re: how to add faq in first page

PostPosted: 18 Nov 2014, 10:31
by andipas
file - themes/classic/views/site/index.php

a simple example:

Code: Select all

$articles 
Article::getLastArticles();
foreach(
$articles as $item){
    echo 
CHtml::link($item->getStrByLang('page_title'), $item->getUrl());
    echo 
$item->getStrByLang('page_body');
    echo 
'<hr>';
}