主页 > 网站建设 > 建站知识 > 修改dedecms之channelArtlist标签,去掉table

修改dedecms之channelArtlist标签,去掉table

POST TIME:2020-04-08 22:43

关键字描述:标签 修改 artlist n&rdquo col> if &rdquo &rsquo

  用记事本打开include/inc_arcpart_view.php ,找到:
  
  if($col>1){ $artlist = “<table width=’$tablewidth’ border=’0′ cellspacing=’0′ cellpadding=’0′> ”; }
  
  修改为:
  
  if($col>1){ $artlist = “ ”; }
  
  查找:
  
  if($col>1) $artlist .= “<tr> ”;
  
  修改为:
  
  if($col>1) $artlist .= “ ”;
  
  查找:
  
  if($col>1) $artlist .= ” <td width=’$colWidth’ valign=’top’> ”;
  
  修改为:
  
  if($col>1) $artlist .= ” ”;
  
  查找:
  
  if($col>1) $artlist .= ” </td> ”;
  
  修改为:
  
  if($col>1) $artlist .= ” ”;
  
  查找:
  
  if($col>1){ $artlist .= ” </tr> ”;}
  
  修改为:
  
  if($col>1){ $artlist .= ” ”;}
  
  查找:
  
  if($col>1) $artlist .= ” </table> ”;
  
  修改为:
  
  if($col>1) $artlist .= ” ”;
  
  这样去掉所有table(表格)标签,然后在模板里使用channelArtlist标签,最终显示的内容将不再包含这些table元素了。
  
  在{dede:channelArtlist}与{/dede:channelArtlist}就能直接调用最终要显示的内容,不会含有多余的html代码了。


收缩
  • 微信客服
  • 微信二维码
  • 电话咨询

  • 400-1100-266