Dedecms生成栏目列表页排序多样化pubdate,click等排序格式
如下图显示:
修改教程如下:
第1步:
在 dede/inc_menu.PHP 中找到“更新主页HTML“ 在这一部分中增加若干行必要的代码:
例如 第2步: 在 dede目录中找到 makeHTML_List.PHP、makeHTML_List_action.PHP,分别复制一份重命名为makeHTML_List_click.PHP、makeHTML_List_click_action.PHP。 在 makeHTML_List_click.PHP 中将“makeHTML_List.htm” 改为“makeHTML_List_click.htm”; 在 makeHTML_List_click_action.PHP 中 将“arc.ListvIEw.class.PHP” 替换为 “arc.List.click.vIEw.class.PHP”;接着在大概文件末尾,找到 “makeHTML_List_action.PHP” 改为“makeHTML_List_click_action.PHP”; 第3步: 在 dede/templets目录中找到 makeHTML_List.htm,复制一份重命名为 makeHTML_List_click.htm;然后打开新建的文件找到action="makeHTML_List_action.PHP",替换为 action="makeHTML_List_click_action.PHP" 第4步: 这一步需要改的比较多点了 在 include目录中找到 arc.ListvIEw.class.PHP 复制一份重命名为 arc.List.click.vIEw.class.PHP; 接着打开您新建的这个文件arc.List.click.vIEw.class.PHP: ①:找到 $tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$this->Typelink->TypeInfos['tempList']; // dede58.com $tempfile = str_replace("{tID}",$this->TypeID,$tempfile); $tempfile = str_replace("{cID}",$this->ChannelUnit->Channelinfos['nID'],$tempfile); if(!file_exists($tempfile)) { $tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/List_default.htm"; } if(!file_exists($tempfile)||!is_file($tempfile)) { echo "模板文件不存在,无法解析文档!"; exit(); } 全部替换为 $tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/List_click_article.htm"; // List_click_article.htm是你自己制作的按click排序的模板,官方默认的模板是按pudate排序,这个看您自己的喜好了,O(∩_∩)O~ ②、找到 $onlyrule = $this->GetMakefileRule($this->FIElds['ID'],"List",$this->FIElds['typedir'],'',$this->FIElds['namerule2']); $onlyrule = str_replace("{page}","1",$onlyrule); $List_1 = $this->GetTruePath().$onlyrule; $murl = MfTypedir($this->FIElds['typedir']).'/'.$this->FIElds['defaultname']; 全部删掉或者注释掉即可。 ③、找到 $namerule2 = str_replace('{tID}',$typeID,$namerule2); 替换为 $namerule2 = str_replace('{tID}',$typeID.'_click',$namerule2); // dede58.com 其中_click,按自己喜好命名。 以上是内存溢出为你收集整理的织梦生成多个pubdate,click等排序栏目列表页教程全部内容,希望文章能够帮你解决织梦生成多个pubdate,click等排序栏目列表页教程所遇到的程序开发问题。 如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。 欢迎分享,转载请注明来源:内存溢出
总结
评论列表(0条)