一.修改includetaglibinfolink.lib.php
主要增加了
$fields['puper'] = $em_nativeplaces[$toptype];
与
$fields['puper'] .= ' - ' . $em;
这段代码改成这样
以下为引用的内容:
//地区链接
if(empty($nativeplace))
{
foreach($em_nativeplaces as $eid=>$em)
{
if($eid % 500 != 0) continue;
$fields['nativeplace'] .= " {$em}rn";
}
}
else
{
$sontype = ( ($nativeplace % 500 != 0) ? $nativeplace : 0 );
$toptype = ( ($nativeplace % 500 == 0) ? $nativeplace : ( $nativeplace-($nativeplace%500) ) );
$fields['nativeplace'] = "{$em_nativeplaces[$toptype]} >> ";
$fields['puper'] = $em_nativeplaces[$toptype];
foreach($em_nativeplaces as $eid=>$em)
{
if($eid < $toptype+1 || $eid > $toptype+499) continue;
if($eid == $nativeplace) {
$fields['nativeplace'] .= " {$em}rn";
$fields['puper'] .= ' - ' . $em;
}
else {
$fields['nativeplace'] .= " {$em}rn";
}
}
}
二、在列表调用里用
{dede:infolink}[field:puper/]{/dede:infolink}
调用
同样适用于其他联动类别