我正在研究codeigniter,我想知道动态更改标题的最佳方法是什么。例如。如果您在主页、单个帖子页面、类别页面等上,标题会发生变化。
我能想到的唯一解决方案是制作单独的函数并将当前 URL(来自地址栏)与单个帖子页面、类别页面、主页的结构进行比较
像这样的东西:
public function current_title() {
if($this->uri->segment(2) == 'post') {
// will return post title
}
if($this->uri->segment(2) == 'category') {
// will return archive title
}
if(current_url() == base_url()) {
// this is home page
}
如果有人以前使用过这个,任何建议都非常感谢