主頁 > 網(wǎng)站建設 > 建站知識 > dedecms生成欄目列表頁排序多樣化pubdate,click等排序

dedecms生成欄目列表頁排序多樣化pubdate,click等排序

POST TIME:2020-04-04 16:15

dedecms生成欄目列表頁排序多樣化pubdate,click等排序格式
如下圖顯示:

修改教程如下:

第1步:

在 dede/inc_menu.php中找到“更新主頁HTML“ 在這一部分中增加若干行必要的代碼:

例如 <m:item name='更新Click排序列表' link='makehtml_list_click.php' rank='sys_MakeHtml' target='main' />

第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']; // very68.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); // very68.com
其中_click,按自己喜好命名。

本教程至此全部結束,感謝您的收看


收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266