織夢(mèng)cms欄目無(wú)法刪除主要原因是PHP7.0的狀態(tài)下運(yùn)行,會(huì)出現(xiàn)欄目刪除后仍然存在的現(xiàn)象,織夢(mèng)官方修復(fù)后可用教程如下:
打開(kāi):/include/typeunit.class.admin.php
搜索 
function DelType($id, $isDelFile)
找到如下代碼
function DelType($id, $isDelFile)
    {
        $this->idCounter = 0;
        $this->idArray = " ";
        $this->GetSunTypes($id);
改成
unction DelType($id, $isDelFile)
    {
        $this->idCounter = 0;
        $this->idArray = array();
        $this->GetSunTypes($id);
如圖