时间:2021-05-02
帖子列表页的帖子预览展示用的模板是/template/default/forum/viewthread_preview.htm,展示出来的楼层模板是同目录的viewthread_preview_node.htm
预览按钮是
<!--{if !$_G['setting']['forumdisplaythreadpreview'] && !($thread['readperm'] && $thread['readperm'] > $_G['group']['readaccess'] && !$_G['forum']['ismoderator'] && $thread['authorid'] != $_G['uid'])}--><!--{if !(!empty($_G['setting']['antitheft']['allow']) && empty($_G['setting']['antitheft']['disable']['thread']) && empty($_G['forum']['noantitheft']))}--><a class="tdpre y" href="javascript:void(0);" onclick="previewThread('{echo $thread['moved'] ? $thread[closed] : $thread[tid]}', '$thread[id]');">{lang preview}</a><!--{/if}--><!--{/if}-->复制代码
包含viewthread_preview.htm页面的html元素tr、td不在模板里,在/static/js/forum.js约600行 newTr = document.createElement('tr'); newTr.id = 'threadPreviewTR_'+tid; newTr.className = 'threadpre'; $(tbody).appendChild(newTr); newTd = document.createElement('td'); newTd.colSpan = listcolspan; newTd.className = 'threadpretd'; newTr.appendChild(newTd); newTr.style.display = 'none';复制代码
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
淘帖淘的是帖子,和帖子列表页调用缩略图是一样的。这里示例调用最多10张图。淘帖列表页模板是collection_view.htm,默认模板是在第231行()之后
discuz帖子内容页的回复按钮代码如上
discuz论坛的分区默认没有伪静态设置,下面总结下分区+列表、帖子页面包屑伪静态。方法:1.分区伪静态打开当前模板风格中forum/discuz.htm,也就
discuz帖子正文下方有一组自动推荐的相关帖子,其调用代码为{langrelated_thread}•$var[subject]复制代码
曾经在做模板下载用的帖子内容页样式的时候,分类信息在默认情况下是显示在帖子内容上面,而我是想脱离帖子内容主体,显示在内容页其他地方单独调用某个分类字段,这样可以