Typecho主题前台实现删除文章功能.jpg
提示
操作千万条,备份第一条,删文不谨慎,博主两行泪
代码
将下面的代码放到 post.php
中即可
<?php Typecho_Widget::widget('Widget_Security')->to($security); ?>
<a href="<?php $security->index('/action/contents-post-edit?do=delete&cid='.$this->cid); ?>">删除文章</a>
点击按钮立即删除文章! 完善
上面的代码虽然实现了功能,但却泯灭了人性!下面我们完善下人性部分,代码改为
代码语言:javascript复制<?php Typecho_Widget::widget('Widget_Security')->to($security); ?>
<a href="<?php $security->index('/action/contents-post-edit?do=delete&cid='.$this->cid); ?>" onclick="javascript:return p_del()">删除文章</a>
<script>
function p_del() {
var msg = "您真的确定要删除吗?";
if (confirm(msg)==true){
return true;
}else{
return false;
}
}
</script>
这样弄好,点击按钮会弹出确认框,问其是否删除文章,用户确认后才会删除,比较符合操作习惯! 后语
post.php
页面成功删除文章后,因为文章不存在了,所以页面自动跳到了 404
页面,不知道怎么才能比较好的让它跳到首页QAQ