您现在的位置是:首页 > 教程 > pbootcms教程pbootcms教程

pbootcms面包屑导航怎么修成英文

访卉2024-12-11 17:51:10pbootcms教程已有人查阅

导读该系统的标签{pboot:position}是面包屑标签。可以通过修改参数修改部分的内容,如:{pboot:position indextext='Home'}。

该系统的标签{pboot:position}是面包屑标签。可以通过修改参数修改部分的内容,如:{pboot:position indextext='Home'}。
但是,部分页面,如搜索,登录,注册等页面无法通过这种形式修改,需要修改文件改成英文。
1,找到对应的文件,修改成英文。
操作:通过查询 “parserPositionLabel” 或者 “// CMS当前位置标签解析” 找到对应的代码,将中文修改成英文或其他语言文字
首页:
路径:/apps/home/controller/IndexController.php
代码大约在224行。
$content = $this->parser->parserPositionLabel($content, - 1, '首页', SITE_INDEX_DIR . '/'); // CMS当前位置标签解析
搜索:
路径:/apps/home/controller/SearchController.php
代码大约在39行。
$content = $this->parser->parserPositionLabel($content, 0, '搜索', )); // CMS当前位置标签解析
我的评论:
路径:/apps/home/controller/CommentController.php
代码大约在124行。
$content = $this->parser->parserPositionLabel($content, 0, '我的评论', )); // CMS当前位置标签解析
会员中心,登录,注册,资料修改:
路径:/apps/home/controller/MemberController.php
代码大约在102,254,273,382行。
$content = $this->parser->parserPositionLabel($content, 0, '会员登录', )); // CMS当前位置标签解析
$content = $this->parser->parserPositionLabel($content, 0, '会员注册', )); // CMS当前位置标签解析
$content = $this->parser->parserPositionLabel($content, 0, '个人中心', )); // CMS当前位置标签解析
$content = $this->parser->parserPositionLabel($content, 0, '资料修改', )); // CMS当前位置标签解析

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签