织梦CMS增加栏目推荐功能,让栏目实现置顶显示或者添加一个样式风格。
  • 效果

  • 教程
1、添加字段 (后台-系统-SQL命令行工具-执行)
ALTER TABLE `xiuzhanwang_arctype` ADD `ishot` CHAR( 255 ) NOT NULL DEFAULT '';
2、修改/dede/templets/catalog_add.htm
<tr> 
 <td width="150" class='bline' height="26" style="padding-left:10px;">是否隐藏栏目:</td> 
 <td class='bline'> 
 <input type='radio' name='ishidden' value='0' class='np' checked="checked" /> 
 显示 &nbsp; 
 <input type='radio' name='ishidden' value='1' class='np' /> 
 隐藏 
 </td> 
 </tr> 
在它下面添加
<tr> 
 <td class="bline" style="padding-left:10px;" width="150" height="26">是否推荐栏目:</td> 
 <td class="bline"> 
 <input name="ishot" value="1" class="np" type="radio" /> 
 是 &nbsp; 
 <input name="ishot" value="0" class="np" type="radio" checked='1' /> 
 否 
 </td> 
 </tr> 
3、修改/dede/catalog_add.php
找到(一共有三处)
ishidden,
在它后面增加
ishot,
继续找到
'$namerule2','0','0',
修改成
'$namerule2','0','0','0',
4、修改/dede/templets/catalog_edit.htm
找到
<tr>
<td width="150" class='bline' height="26" style="padding-left:10px;">是否隐藏栏目:</td>
  <td class='bline'>
   <input type='radio' name='ishidden' value='0' class='np'<?php if($myrow['ishidden']=="0") echo " checked='1' ";?>/>
   显示 &nbsp;
   <input type='radio' name='ishidden' value='1' class='np'<?php if($myrow['ishidden']=="1") echo " checked='1' ";?>/>
   隐藏
</td>
</tr>
在它下面增加
<tr>
 <td class="bline" style="padding-left:10px;" width="150" height="26">是否推荐栏目:</td>
 <td class="bline">
  <input name="ishot" value="1" class="np" type="radio" <?php if($myrow['ishot']=="1") echo " checked='1' ";?>>
  是 &nbsp;
  <input name="ishot" value="0" class="np" type="radio" <?php if($myrow['ishot']=="0") echo " checked='1' ";?>/>
  否
 </td>
</tr>
5、修改/dede/catalog_edit.php
找到如下代码(注意一共有两处)
ishidden='$ishidden',
在它下面增加
ishot='$ishot',
  • 调用方法
dede:channel调用:
{dede:channel row='6' typeid='3' type='son'}
  <li [field:ishot runphp="yes"]
    if(@me==1) @me="class='hot'";else @me="";
    [/field:ishot]>
    <a href="[field:typelink/]">[field:typename/]</a>
  </li>
{/dede:channel}
dede:channelartlist调用:
<li {dede:field.ishot runphp="yes"}
    if(@me==1) @me="class='hot'";else @me="";
      {/dede:field.ishot}>
     <a href="{dede:field.typeurl/}">{dede:field name='typename'/}</a>
</li>