实现教程
1、打开 \include\taglib\channelartlist.lib.php 找到
1 $tpsql = " reid='$typeid' AND ispart<>2 AND ishidden<>1 ";改成
1 2 3 4 5 6 7 8 9 if($type=='son') { $typeid = ( !empty($refObj->TypeLink->TypeInfos['id']) ? GetTopid($refObj->TypeLink->TypeInfos['id']) : 0 ); $tpsql = " reid='$typeid' AND ishidden<>1 "; } else { $tpsql = " reid='$typeid' AND ispart<>2 AND ishidden<>1 "; }2、打开 \include\taglib\channel.lib.php 找到
1 if($type=='son' && $reid!=0 && $totalRow==0)改成
1 if($type=='son' && $reid!=0 && $totalRow==0 && $noself=='')3、后台-系统-其它选项 去掉php
列表页和内容页标签写法
- {dede:field.typename/}
- [field:typename/]
{dede:php}
$GLOBALS['thisid'] = intval($refObj->Fields['typeid']);
$GLOBALS['reid'] = intval($refObj->Fields['reid']);
$GLOBALS['topid'] = intval($refObj->Fields['topid']);
{/dede:php}
{dede:channelartlist type=son}
{dede:channel type=son noself=yes}
{/dede:channel}
{/dede:channelartlist}
注意:红色的地方是必须要的