WordPress文章发布按钮添加确认对话框(再次验证) – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

你有没有不小心误点发布按钮而发表一篇文章吗?  如果你使用了社交类插件,误发布的同时会共享到社交网络上,甚至可能被搜索引擎收录,本文的一段代码将有效防止误操作的发生。

WordPress文章发布按钮添加确认对话框(再次验证) – WordPress 教程

将下面的代码添加到您的当前主题的 functions.php 文件:

// This is the confirmation message that will appear.$c_message = 'Are you SURE you want to publish this post?';function confirm_publish(){global $c_message;echo '<script type="text/javascript"><!--var publish = document.getElementById("publish");if (publish !== null) publish.onclick = function(){    return confirm("'.$c_message.'");};// --></script>';}add_action('admin_footer', 'confirm_publish');

之后,点击发布按钮会有如上图的提示,可以防止误操作。

这个代码就是在你发布的时候,进行再一次确认。

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: