PHPCMS V9中TAGS列表页中文的途径究竟利不利于优化,议论纷纷,究竟用拼音仍是中文呢?今日先把办法共享给我们,期望对需求的朋友有协助,本文仅仅将途径中的中文修改为拼音,未触及伪静态问题,你能够在修改为拼音后参阅CMS集中营下面这篇文章来设置伪静态。
下面开端解说phpcms v9中tags列表页URL用拼音作为途径的办法
翻开phpcmsmodulescontenttag.php文件
找到
$r=$this->keyword_db->get_one(array('keyword'=>$tag,'siteid'=>$this->siteid),'id');
修改为
$r=$this->keyword_db->get_one(array('pinyin'=>$tag,'siteid'=>$this->siteid),'id,pinyin,keyword');
找到
$tagid=intval($r['id']);
在此代码下边增加
$tagzw=$r['keyword'];
翻开phpcmstemplatesdefaultcontentshow.html模板文件
将
{loop$keywords$keyword}<ahref="{APP_PATH}index.php?m=content&c=tag&a=lists&tag={urlencode($keyword)}"class="blue">{$keyword}</a>{/loop}
修改为
{loop$keywords$keyword} {pc:getsql="SELECT*FROMv9_keywordwherekeyword='$keyword'"return="datatag"}{loop$datatag$r} <ahref="{APP_PATH}index.php?m=content&c=tag&a=lists&tag={$r[pinyin]}"class="blue">{$r[keyword]}</a> {/loop}{/pc} {/loop}
翻开phpcmstemplatesdefaultcontenttag_list.html模板文件
本来{$tag}显现的是中文,现在显现的是拼音,如果有需求显现中文将{$tag}替换为{$tagzw}即可
翻开phpcmstemplatesdefaultcontenttag.html模板文件
将
{loop$infos$info} <ahref="{APP_PATH}index.php?m=content&c=tag&a=lists&tag={urlencode($info['keyword'])}">{$info['keyword']}</a>({$info['videonum']}) {/loop}
修改为
{pc:getsql="SELECT*FROMv9_keywordORDERBY`videonum`DESC"return="datatag"num="30"} {loop$datatag$r}<ahref="{APP_PATH}index.php?m=content&c=tag&a=lists&tag={$r[pinyin]}">{$r[keyword]}</a>{/loop} {/pc}
声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!
原文地址:phpcms二次开发用拼音作为tags列表页路径的方法发布于2022-05-21 07:43:31