欢迎来到DT模板堂 登录 注册
DT教程
当前位置:首页 > 教程 > 标签调用> destoon 内容页批量调用所有自定义字段的方法

destoon 内容页批量调用所有自定义字段的方法

发表:DESTOON模板堂(dtmoban.com) 发表时间:2017-03-10

destoon 内容页批量调用所有自定义字段的方法

一个一个的在模板里调,是不是太麻烦了,下面的方法就是批量循环出当前频道所有不为空的自定义字段内容。

api/extend.func.php 中添加以下函数


function getfileds($tb){

global $db;
$result = $db->query("select name,title from {$db->pre}fields where tb='$tb' order by listorder asc");
$tags = array();
while($r = $db->fetch_array($result)){
$tags[] = $r;
}
return $tags;

}


在内容页中使用 


{php $atts = getfileds('mall');}
 {loop $atts $i $v}
{if $$v[name]}<li>{$v[title]}:{$$v[name]}</li>{/if}
{/loop}


注意:其中 getfileds('mall')  中的mall 是当前频道的表名,商城是 mall  供应 sell_5 求购 buy_6  更我表名请到后台数据库备份那里查看,这里不需要传表前缀。



电话: 1392 8916 720   客服QQ:56667115

© 2014-2015 DESTOON模板堂(dtmoban.com) 版权所有,并保留所有权利。

二维码

扫一扫
获取更多资讯