織夢新建文章模型後 文章欄目轉入新模型操作

2021-06-09 14:53:56 字數 485 閱讀 5746

首先在織夢後台建立新內容模型 ,再用以下的mysql 語句 將以前的欄目文章轉入新模型,

insert into dede_addon20(aid,typeid,redirecturl,userip,body) select aid,typeid,redirecturl,userip,body from dede_addonarticle where dede_addonarticle.typeid =222

delete * from dede_addonarticle where typeid =222

//更新跟平文章頻道有關的表

update dede_arctiny set channel=111  where typeid=222

update dede_archives set channel=111  where typeid=222

update dede_arctype set channeltype =111  where id =222

dede織夢文章高亮欄目高亮

最簡單的實現方法,不改動程式檔案 上面那一行標籤的意思是 用 當前文件id 作為判斷 如果在 dede arclist標籤裡有文件的id 等於 當前文件id 就給它加 class current 例子 field typename 開啟include taglib channelartlist.li...

hexo新建文章

搭建完成部落格後,小夥伴們應該都躍躍欲試寫部落格文章了,那麼我們就開始行動吧 首先,在hexo專案的根目錄下執行建立命令 hexo new hexo new article info created home git hexo blog source posts hexo new article.m...

dede織夢欄目頁和文章頁中獲取當前欄目名稱方法

一般情況下,在dede織夢系統中列表頁 欄目頁和文章頁中獲取當前所在欄目名稱只需要 field typename 即可,不需要定義id,預設的就是當前欄目名稱,這種方法同時也適用於多級分類。當然還有別的方式如下 找到include inc functions.php 此函式為公共函式,當程式執行時自...