如何在帖子头部加入编辑链接-Discuz教程下载

如何在帖子头部加入编辑链接

来自版块: Discuz教程发表于: 2016-2-25 21:45:13
32019
0
如本资源下载地址失效,请点击此处进行反馈
开通本站Svip会员,全站资源免费下
不少站长发现如果帖子太长编辑帖子比较麻烦,得在主题帖底部才能找到编辑的链接,那么在上方也加一个就很有必要了。
编辑template/default/forum/viewthread.htm文件,137行左右
  1. <!--{if $allowpusharticle && $allowpostarticle}--><!--{eval $modopt++}--><a href="portal.php?mod=portalcp&ac=article&from_idtype=tid&from_id=$_G['tid']">{lang modmenu_pushart
  2. icle}</a><span class="pipe">|</span><!--{/if}-->
复制代码
在下方插入如下代码:
  1. <!--{if (($_G['forum']['ismoderator'] && $_G['group']['alloweditpost'] && (!in_array($post['adminid'], array(1, 2, 3)) || $_G['adminid'] <=$post['adminid'])) || ($_G['forum']['alloweditpost'] && $_G['uid'] && ($post['authorid'] == $_G['uid'] && $_G['forum_thread']['closed'] == 0) && !(!$alloweditpost_status && $edittimelimit && TIMESTAMP - $post['dbdateline'] > $edittimelimit)))}-->
  2.                                                 <a href="forum.php?mod=post&action=edit&fid=$_G[fid]&tid=$_G[tid]&pid=$post[pid]{if !empty($_GET[modthreadkey])}&modthreadkey=$GET[modthreadkey]{/if}&page=$page"><!--{if $_G['forum_thread']['special'] == 2 && !$post['message']}-->{lang post_add_aboutcounter}<!--{else}-->{lang edit}</a><!--{/if}-->
  3. <!--{elseif $_G['uid'] && $post['authorid'] == $_G['uid'] && $_G['setting']['postappend']}-->
  4.                                                 <a class="appendp" href="forum.php?mod=misc&action=postappend&tid=$post[tid]&pid=$post[pid]&extra=$_GET[extra]&page=$page" onClick="showWindow('postappend', this.href, 'get', 0)">{lang postappend}</a>
  5.                                         <!--{/if}-->
复制代码
效果如图: 163924v222xzza6p2mc22x.png.thumb.jpg

全部评论 0

您需要登录后才可以回帖 立即登录
登录
0
0
0
返回顶部