首页 > 建站教程 > CMS教程 > dedecms >  织梦在首页调用专题文章列表、缩略图等方法正文

织梦在首页调用专题文章列表、缩略图等方法

一、在首页调用专题页文章列表的三种方法:
第一: {dede:arclist flag='c' type='spec' titlelen=40 row=10 orderby=pubdate}

第二: {dede:arclist flag='c' channelid='-1' typeid='1,2,3,4,5,200,202' type='spec' titlelen=40 row=10 orderby=pubdate}

第三: {dede:arclist getall='1' flag='c' channelid='-1' typeid='1,2,3,4,5,200,202' type='spec' titlelen=40 orderby=pubdate row=2 limit='0,2'}
    例如:
{dede:arclist id='123' channelid="" row="" titlelen=""}
<a href="[field:arcurl]">[field:title]</a>
<p>{dede:field name="description"/}.....</p>
{/dede:arclist}
    参数说明:
            channelid="" 是模型的id号 专题的为-1
            row="" 显示的行数
            titlelen="" 标题的长度
            id="" 专题ID

二、dedecms首页调用专题页的描述和专题链接地址的方法:
{dede:arclist  id=11 row=1  channelid="-1"  type="spec" }
    /*如需同时调用多个,可设置row=n,我这里只调用了一条,还可以做相应的排序处理orderby=pubdate */
    <a href="[field:arcurl/]" class="fl"><img src="[field:litpic/]"></a>
    <div class="record_product_description">
        [field:description/]... 
    </div>
    <div class="record_more"><a href="[field:arcurl/]">[field:typename/]</a></div>
{/dede:arclist}
    注意:这里的 id以及 sql语句里面的 t.id 的值就是你想调用的那个专题的ID

    织梦调用专题页面 :type='spec'

    例子:
{dede:arclist typeid='' channelid='-1' type='spec' titlelen='28'}
<a href='[field:arcurl/]'>[field:title/]</a>
{/dede:arclist}