该问题已被锁定!
5
关注
2624
浏览

问答页面的标题 怎么改,在哪里改

AI智能回复搜索中,请稍后...

为什么被折叠? 0 个回复被折叠
kimwang 初级会员 用户来自于: 广东省佛山市
2012-12-11 22:18
谢谢邀请,技术我不懂,请以官方为准,我纯支持.
zhengqiang 超级管理员 用户来自于: 广东省深圳市
2012-12-11 22:02
这个写在system里面了,具体位置:/system/aws_controller.inc.php这个文件里面

public function _crumb($name, $url = null) { if (is_array($name)) { foreach ($name as $key => $value) { $this->crumb($key, $value); } return $this; } $crumb_template = $this->crumb; if (strlen($url) > 1 and substr($url, 0, 1) == '/') { $url = get_setting('base_url') . substr($url, 1); } $this->crumb[] = array( 'name' => $name, 'url' => $url ); $crumb_template['last'] = array( 'name' => $name, 'url' => $url ); TPL::assign('crumb', $crumb_template); foreach ($this->crumb as $key => $crumb) { $title = $crumb['name'] . ' - ' . $title; } TPL::assign('page_title', htmlspecialchars(rtrim($title, ' - '))); return $this; }