您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
织梦cms如何调用dz x1.5的相关数据
痴珊2023-12-20 22:54:04dedecms教程已有人查阅
导读最近帮朋友整合了DEDECSM V5.6和discuz x1.5后,朋友又再次找到我,咨询如何实现在织梦CMS的相关栏目中调用论坛的相关数据。于是我尝试调用“活跃会员”
最近帮朋友整合了DEDECSM V5.6和discuz x1.5后,朋友又再次找到我,咨询如何实现在织梦CMS的相关栏目中调用论坛的相关数据。于是我尝试调用“活跃会员”“指定帖子”“帖子中的图片”这三个内容,经过一天的努力,终于实现,现在发出来,提供给大家研究学习。
一、调用活跃会员:
一、调用活跃会员:
{dede:loop table="pre_common_member" sort="credits" row="5" infolen='4'}
<tr>
<td><div style="margin-top:5px;"><a href="/bbs/home.php?mod=space&uid=[field:uid /]" target="_blank"><IMG src="/bbs/uc_server/avatar.php?uid=[field:uid /]&size=middle" width="35" height="26"></a><a href="/bbs/home.php?mod=space&uid=[field:uid /]" target="_blank" style="font-size:12px; color:#626262; margin-left:5px;">[field:username/]</a></div></td>
</tr>{/dede:loop}
二、调用指定板块帖子
{dede:loop table="pre_forum_thread" if="fid=42" sort="tid" row="4"}
<li class="li3 font-size text2">
<a href="/bbs/forum.php?mod=viewthread&tid=[field:tid /]&extra=page%3D1" target="_blank" style="color:#626262">·[field:subject function="cn_substr('@me',30)" /]</a> </li> {/dede:loop}
三、调用帖子中的图片
{dede:sql sql="SELECT`pre_forum_attachment`.`aid`, `pre_forum_attachment`.`attachment`,`pre_forum_thread`.`tid`, `pre_forum_thread`.`fid`, `pre_forum_thread`.`subject` FROM `pre_forum_attachment` LEFT JOIN `pre_forum_thread` ON `pre_forum_thread`.`tid`=`pre_forum_attachment`.`tid` WHERE `pre_forum_attachment`.`readperm`='0' AND `displayorder`>='0' AND `filetype`='application/octet-stream' GROUP BY tid LIMIT 1,5 "}
<div class="floatl margint content-bottom1">
<div class="floatl">
<a href="/bbs/forum.php?mod=viewthread&tid=[field:tid /]">
<img src="/bbs/data/attachment/forum/[field:attachment/]" ALT="[field:subject/]" width="100" height="80" border="0" /> </a>
</div>
<div class="floatl margint font-size" style="*margin-top:0;">
<a href="/bbs/forum.php?mod=viewthread&tid=[field:tid /]">[field:subject function="cn_substr('@me',18)"/]</a>
</div>
</div> {/dede:sql}
最终效果:
本文标签:
很赞哦! ()
上一篇:检测密码强度的实现方法代码示例
下一篇:织梦cms官方网址长度怎么修改
随机图文
-
让dedecms自带搜索实现全文检索支持标题与内容的方法
Dedecms 5.5 5.6默认的模糊搜索只能根据网站文章的名称进行搜索,无法搜索到文章内部信息,下面讲一下如何让Dedecms自带搜索实现全文检索 -
dedecms模板中调用wordpress的文章的实现方法
很多人做网站的时候都可能会选择织梦cms,而在做博客的时候大部分都会选择wordpress,那么两者结合起来做网站的朋友估计也不在少数 -
删除织梦所有待审核稿件文章的sql语句写法
archives是dedecms主表;addonarticle 新闻信息表在dede后台"系统-》SQL命令行工具"运行下以命令即可(注意,运行后未审核的数据全被删除,小心使用) -
织梦后台提示:dedecms Error:Tag disabled:php!解决方法
出现问题:织梦DedeCMS v7.5后台提示 DedeCMS Error:Tag disabled:"php" more...!
留言与评论 (共有 条评论) |