为WordPress文章发布按钮添加确认对话框

quality,Q 70

1689324327 20230714084527 64b10b27be033

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

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

  1. // This is the confirmation message that will appear.
  2. $c_message = ‘Are you SURE you want to publish this post?’;
  3.  
  4. function confirm_publish(){
  5.  
  6. global $c_message;
  7. echo ‘<script type=“text/javascript”><!–
  8. var publish = document.getElementById(“publish”);
  9. if (publish !== null) publish.onclick = function(){
  10.     return confirm(“‘.$c_message.'”);
  11. };
  12. // –></script>’;
  13. }
  14. add_action(‘admin_footer’, ‘confirm_publish’);

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

类似文章