【发布时间】:2012-10-10 07:21:23
【问题描述】:
我使用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();
}
}
我想消除的问题是我想阻止热门内容出现在我的模板中。我只需要内容、页眉和页脚。谁能告诉我怎么做?
【问题讨论】:
-
你能在这里分享你的图书馆代码scrp.at看看吗。
-
您使用的是哪个模板库? williamsconcepts 或 phil's 或 another one?
标签: php codeigniter templates