我有默认模板和名为 home.ctp 的视图
当用户调用首页/首页视图时在 default.ctp 中呈现。
在我看来,我有:
<?php
$this->set('title', 'This is the title');
$this->set('description', 'This is the description');
...
?>
在我的default.ctp我有:
<title><?php echo $title; ?></title>
....
<meta name="description" content="<?php echo $description; ?>">
....
它工作正常,但是,这是在 CakePHP 中添加标题和元标记的正确方法吗?
谢谢!