织梦对discuz论坛的常用调用代码有哪些?
织梦dedecms对discuz论坛的一些常用调用代码
推荐学习:织梦cms
dede调用dz论坛帖子及特定板块帖子的调用方法
论坛最新主题:
{dede:loop table=”cdb_threads” sort=”tid” row=”10″} <a href=”/dz/viewthread.php?tid=[field:tid /]“> ·[field:subject function="cn_substr('@me',30)" /]([field:lastpost function="date('m-d h:m','@me')" /]) </a> <br/> {/dede:loop}
调特定板块的主题:
{dede:loop table=”cdb_threads” if=”fid=5 and displayorder!=-1″ sort=”tid” row=”10″} <a href=”/dz/viewthread.php?tid=[field:tid /]“> ·[field:subject function="cn_substr('@me',30)" /]([field:lastpost function="date('m-d h:m','@me')" /])</a> {/dede:loop}
显示精华帖:
{dede:loop table=”cdb_threads” if=”fid=5 and digest>0 and displayorder!=-1 ” sort=”tid” row=”10″} <a href=”/dz/viewthread.php?tid=[field:tid /]“> ·[field:subject function="cn_substr('@me',30)" /]([field:lastpost function="date('m-d h:m','@me')" /])</a> {/dede:loop}
论坛之星/活跃会员:
{dede:loop table=”cdb_members” sort=”posts” row=”3″} <li> <a href=”/bbs/space.php?uid=[field:uid /]“><img src=”/bbs/uc_server/avatar.php?uid=[field:uid /]&size=middle”></a> <a href=”/bbs/space.php?uid=[field:uid /]“>[field:username/]</a> <br>贴子:[field:posts/] <br>加入:[field:regdate function="getdatemk(@me)"/] </li> {/dede:loop}
/bbs/space.php?uid=[field:uid /] 个人信息地址
/bbs/uc_server/avatar.php?uid=[field:uid /]&size=middle 论坛头像
/home/space.php?uid=[field:uid /] uchome的个人空间地址
调用贴子:
{dede:loop table=”cdb_threads” if=’digest>0′ sort=”tid” row=”10″} <li><a href=”/bbs/viewthread.php?tid=[field:tid /]“>[field:subject function="cn_substr('@me',30)" /]</a> {/dede:loop}
if=”" 条件
示例1:调用版块id为4的贴子:
if=”fid=4″ 调用指定版块的贴子
示例2:调用版块id为4的精华贴子
if=”fid=4 and digest>0″
示例3:调用回复超过20贴的贴子
if=”fid=4 and replies>20″
调用附件带图片的贴子
{dede:sql sql=”select` cdb_attachments`.`aid`, `cdb_attachments`.`attachment`,`cdb_threads`.`tid`, `cdb_threads`.`fid`, `cdb_threads`.`subject` from `cdb_attachments` left join `cdb_threads` on `cdb_threads`.`tid`=`cdb_attachments`.`tid` where `cdb_attachments`.`readperm`=’0′ and `displayorder`>=’0′ and `filetype`=’image/pjpeg’ group by tid limit 0,2″} <li><a href=”/bbs/viewthread.php?tid=[field:tid /]“><img src=”/bbs/attachments/[field:attachment/]“></a></li> <li><a href=”/bbs/viewthread.php?tid=[field:tid /]“>[field:subject function="cn_substr('@me',30)" /]</a></li> {/dede:sql}
推荐:《discuz教程》
以上就是织梦对discuz论坛的常用调用代码有哪些的详细内容。