dedecms首页一个区域怎么调用多个栏目下面的文章

dedecms首页一个区域怎么调用多个栏目下面的文章,第1张

{dede:arclist orderby='pubdate' titlelen='20'  typeid='' limit='0,3'} 

  <li>·<img src="[field:litpic/]"><a href="[field:arcurl/]" title="[field:title/]">[field:title/][field:title function="cn_substr(@me,20)"/]</a></li>

{/dede:arclist}

主要是写好typeid就是栏目的ID,就是[field:litpic/],将你要循环的,放到{dede:arclist orderby='pubdate' titlelen='20'  typeid='' limit='0,3'} 就可以了,我也是做医疗这块的网站的

用频道(栏目)的ID调用,ID可在后台的栏目管理里面找到,就是添加typeid参数,如调用ID为1的栏目的文章

{dede:arclist typeid=1 row=5

找到dede默认的indexhtm文件的这段代码

<div class="picnews">

<dl class="tbox light">

<dt class='light'><strong>图文资讯</strong></dt>

<dd class='light'>

<div class="infiniteCarousel">

<div class="wrapper">

<ul id='imgscroll'>

{dede:arclist row=10 orderby=pubdate type='image' imgwidth='143' imgheight='106'}

<li><a href="[field:arcurl/]">[field:image/]<span class="title">[field:title/]</span></a></li>

{/dede:arclist}

</ul>

</div>

</div>

</dd>

</dl>

</div>

{dede:arclist row=10 orderby=pubdate type='image' imgwidth='143' imgheight='106'}

<li><a href="[field:arcurl/]">[field:image/]</a></li>

{/dede:arclist}这一段就是调用的代码了,如果还想要图文结合可以这样

{dede:arclist row=10 orderby=pubdate type='image' imgwidth='143' imgheight='106'}

<li><a href="[field:arcurl/]">[field:image/]<span class="title">[field:title/]</span></a></li>

{/dede:arclist}

如果有1,2,3,4,5,6,7,8,9个栏目,调用1,3,5三个栏目可以这样调用typeid=‘1,3,5’

/member/indexphp 搜索     / 最新文档8条 /

在其上方增加

//统计文章总数量   

$count = $dsql->GetOne("select COUNT() AS dd FROM  #@__archives where mid='"$cfg_ml->M_ID"'");

//统计文章总点击数

$counts = $dsql->GetOne("select sum(click) AS count_number FROM  #@__archives where mid='"$cfg_ml->M_ID"'");

indexhtm 模版中调用   统计文章总数量 

<php echo $count['dd'];>

indexhtm 模版中调用  统计文章总点击数

<php echo $counts['count_number'];>

DABAN RP主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
网站模板库 » dedecms首页一个区域怎么调用多个栏目下面的文章

0条评论

发表评论

提供最优质的资源集合

立即查看 了解详情