用記事本打開include/inc_arcpart_view.php ,找到:
if($col>1){ $artlist = “<table width=’$tablewidth’ border=’0′ cellspacing=’0′ cellpadding=’0′>\r\n”; }
修改為:
if($col>1){ $artlist = “\r\n”; }
查找:
if($col>1) $artlist .= “<tr>\r\n”;
修改為:
if($col>1) $artlist .= “\r\n”;
查找:
if($col>1) $artlist .= ” <td width=’$colWidth’ valign=’top’>\r\n”;
修改為:
if($col>1) $artlist .= ” \r\n”;
查找:
if($col>1) $artlist .= ” </td>\r\n”;
修改為:
if($col>1) $artlist .= ” \r\n”;
查找:
if($col>1){ $artlist .= ” </tr>\r\n”;}
修改為:
if($col>1){ $artlist .= ” \r\n”;}
查找:
if($col>1) $artlist .= ” </table>\r\n”;
修改為:
if($col>1) $artlist .= ” \r\n”;
這樣去掉所有table(表格)標(biāo)簽,然后在模板里使用channelArtlist標(biāo)簽,最終顯示的內(nèi)容將不再包含這些table元素了。
在{dede:channelArtlist}與{/dede:channelArtlist}就能直接調(diào)用最終要顯示的內(nèi)容,不會(huì)含有多余的html代碼了。