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();
}
}
解消したい問題は、トップ コンテンツがテンプレートに表示されないようにしたいということです。コンテンツ、ヘッダー、フッターのみが必要です。誰でもこれを行う方法を教えてもらえますか?