我使用codeigniter的模板库设计了一个模板,模板有以下区域:
$template['template_ar']['template'] = 'template_ar';
$template['template_ar']['regions'] = array(
'header',
'title',
'content',
'topcontent',
'sidebar',
'footer',
'options',
'script',
);
我使用以下代码来呈现我的模板
class faq extends MY_Controller {
/**
* Index
* This function views the Home Page
*
* @access public
* @return
*/
public function index() {
$this->template->write_view('content','comment/questions');
$this->template->write('options','You one',TRUE);
$this->template->render();
}
}
我想消除的问题是我想阻止热门内容出现在我的模板中。我只需要内容、页眉和页脚。谁能告诉我该怎么做?