Cuteen主题独立页面添加编辑按钮

/html/typecho-1.2.1/usr/themes/Cuteen 目录中,打开 page.php 文件,将代码添加到下面的代码后面

<span class="item">正文</span>

编辑page.php 文件

nano /html/typecho-1.2.1/usr/themes/Cuteen/page.php

添加

登陆之后才可以显示

<!-- 前台编辑文章 -->
<?php if($this->user->hasLogin()):?>
  <span style="position: absolute;right: 25px;" class="item">
    <font size=2>
      [
      <a href="<?php $this->options->adminUrl(); ?>write-page.php?cid=<?php echo $this->cid;?>" target="_blank" class="item">编辑</a>
      ]
    </font>
  </span>
<?php endif;?>
<!-- 前台编辑文章 -->

不登陆就可以显示

<!-- 前台编辑文章 -->
  <span style="position: absolute;right: 25px;" class="item">
    <font size=2>
      [
      <a href="<?php $this->options->adminUrl(); ?>write-page.php?cid=<?php echo $this->cid;?>" target="_blank" class="item">编辑</a>
      ]
    </font>
  </span>
<!-- 前台编辑文章 -->
无标签
评论区
头像