0

我使用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();
  }
}

我想消除的问题是我想阻止热门内容出现在我的模板中。我只需要内容、页眉和页脚。谁能告诉我该怎么做?

4

1 回答 1

0

CodeIgniter 的模板库

设置写入区域

$this->template->set_regions($regions);

将区域动态添加到当前设置的模板中

$this->template->add_regions($name, $props);

清空区域的内容

$this->template->empty_region($name);
于 2012-10-16T05:07:57.493 回答