Skip to content
快速导航

DedeCMS其它标签

infoguide 分类信息的地区与小分类搜索

**名称:**infoguide

**功能:**获取分类信息的地区和小分类搜索的表单,本标签需要在分类信息模型下使用

语法:

html
{dede:infoguide}
<form  name='infoguide' method='get' action='/plus/list.php'>
    [field:nativeplace  /]
    [field:infotype  /]
    <input type='hidden'  name='tid' value='[field:typeid /]' />
    <input type='hidden'  name='channelid' value='-8' />
    <span  class='infosearchtxt'>关键字:</span>
    <span><input  type='text' name='keyword' value='' class="ipt-txt"  /></span>
    <input type='submit'  value='搜索信息' class="btn-2"  style='cursor:pointer' />&nbsp;
    <input type='button'  value='发布信息' class="btn-2" onclick="location='/member/archives_sg_add.php?channelid=-8';" style='cursor:pointer' />
</form>
{/dede:infoguide}

文件:

\include\taglib\infoguide.lib.php

function lib_infoguide(&$ctag,&$refObj)

默认底层模板:

info_guide.htm

参数:

底层字段:

nativeplace,infotype,typeid

范例:

可以查看分类信息页面模板list_info.htm文件。

image-20220316113917111

**名称:**infolink

**功能:**获取分类信息地区与类型的快捷链接,仅在分类信息模型下能够使用

语法:

html
{dede:infolink}
<table  id='dedeinfolink'>
    <tr>
        <td colspan='3'  class='iftitle'>
            信息附加条件:
        </td>
    </tr>
    
    <tr>
        <td  width='50'>&nbsp;地 区:</td>
        <td  align='center' nowrap='yes'>
            <div>[field:linkallplace/]</div>
        </td>
        <td>
            [field:nativeplace  /]&nbsp;
        </td>
    </tr>
    
    <tr>
        <td  colspan='3' class='spline'>&nbsp;</td>
    </tr>
    
    <tr>
        <td>&nbsp;类 型:</td>
        <td align='center'  nowrap='yes'>
            <div>[field:linkalltype/]</div>
        </td>
        <td>[field:infotype  /]&nbsp;</td>
    </tr>
    
    <tr>
        <td  colspan='3' class='spline'>&nbsp;</td>
    </tr>
</table>
{/dede:infolink}

文件:

\include\taglib\infolink.lib.php

function lib_infolink(&$ctag,&$refObj)

默认底层模板:

info_link.htm

参数:

底层字段:

nativeplace,infotype,typeid,channelid,linkallplace,linkalltype

范例:

image-20220316113627708