dedecms 首页的列表中调取相关的TAG怎么调用
/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'];>幻灯片不是这样子显示的,幻灯需要专用的显示调用代码,请参照默认模版里的indexhtm文件61-95行对照修改!!
请采纳!!!
找到include\helpers\archivehelperphp文件130行,
// $tags = ($tags=='' $row['tag'] : ','$row['tag']);
将其注释掉用
$tags = "<a href='/tagsphp/"urlencode($row['tag'])"'>"$row['tag']"</a>";替换
{dede:channelartlistrow='5' typeid='14,22,30,40,49'}
<li>
<a href="">{dede:fieldname='typeurl'/} <img src="{dede:globalcfg_templets_skin/}/images/0{dede:globalitemindex/}jpg" alt="{dede:fieldname='typename'/}" width="243" height="120" />
<div class="te-s">
<h3>{dede:fieldname='typename'/}</h3>
<p>
{dede:arclist
titlelen='120' row='8'}
<a
href="[field:arcurl /]" title="[field:title/]"
target="_blank" >[field:title/]</a>
{/dede:arclist}
</p>
</div>
</a>
</li>
{/dede:channelartlist}
{dede:infolink}
地 区:[field:linkallplace/] [field:nativeplace /]
类 型:[field:linkalltype/] [field:infotype /]
{/dede:infolink}和分类页调用一样
0条评论