来自Typecho首页文章列表新增管理员可见编辑按钮

之前用的Wordpress主题大多都支持前台点击编辑按钮进入后台对文章进行修改,方便极了。转了Typecho之后换了几个主题都没发现有这个功能,果然需要造个小轮子啊。

观察一下编辑页面,都是固定地址加上CID,例如

http://www.xxx.com/admin/write-post.php?cid=4222

那么就简单了,在输出post-entry的时候按规则输出连接就行。 翻了一下主题,是通过$this->cid来输出文章ID的。

对了,重点是管理管理员可见,翻了一下Typecho的权限体系,分为5个等级,详细请看权限控制

尼玛什么代码示例都没有,好吧,只能输出看看咯,其实不用输出都知道应该是命名为group了,这里直接给出输出用户组的方法。

<?php echo get_object_vars ($this->user)['row']['group']; ?>

然后两者结合一下,OK啦。

<?php $currGroup = get_object_vars($this->user) ['row']['group'];
if ($currGroup == "administrator"): ?>
      <a data-no-instant="" href="<?php $this->options->siteUrl(); ?>admin/write-post.php?cid=<?php echo $this->cid; ?>"><?php  _e('Edit'); ?></a>
<?php endif; ?>

(在Lpisme中的index.php中在你需要显示的地方添加上面的代码)
预览
预览

主题相应的地方,
例如主题为Lpisme中的post.php
在你需要显示的地方添加

<span><?php $currGroup = get_object_vars($this->user) ['row']['group'];
if ($currGroup == "administrator"): ?>
      <a data-no-instant="" href="<?php $this->options->siteUrl(); ?>admin/write-post.php?cid=<?php echo $this->cid; ?>"><?php  _e('编辑'); ?></a>
<?php endif; ?></span>

这样就在文章中显示了
显示

另外在代码中发现data-no-instant="",可以删的,主题Lpisme自带
这里不知道怎么用的,搜索没错的话应该是InstantClick.js · 让页面提前加载200ms

标签:typecho

你的评论