typecho技巧
1)给typecho增加编辑当前文件功能,修改index.php或者post.php文件,添加
<li>
<div class="edit">
<?php if($this->user->hasLogin()):?>
<a href="<?php $this->options->adminUrl(); ?>write-post.php?cid=<?php echo $this->cid;?>" target="_blank">编辑</a>
<?php endif;?>
</div>
</li>