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

许都 691 0

为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 '';
}
add_action('admin_footer', 'confirm_publish');

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

发表评论 取消回复
表情 图片 链接 代码

分享