織夢cms欄目無法刪除主要原因是PHP7.0的狀態(tài)下運行,會出現(xiàn)欄目刪除后仍然存在的現(xiàn)象,織夢官方修復(fù)后可用教程如下:
打開:/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);
如圖