在 /html/typecho-1.2.1/usr/themes/Cuteen
目录中,打开 post.php
文件,将代码添加到下面的代码后面
<span class="item">正文</span>
编辑post.php
文件
nano /html/typecho-1.2.1/usr/themes/Cuteen/post.php
添加
<!-- 前台编辑文章 -->
<?php if($this->user->hasLogin()):?>
<span style="position: absolute;right: 25px;" class="item">
<font size=2>
[
<a href="<?php $this->options->adminUrl(); ?>write-post.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-post.php?cid=<?php echo $this->cid;?>" target="_blank" class="item">编辑</a>
]
</font>
</span>
<!-- 前台编辑文章 -->