4 Star 12 Fork 4

沈唁 / Sync QCloud COS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
uninstall.php 456 Bytes
一键复制 编辑 原始数据 按行查看 历史
沈唁 提交于 2023-10-27 08:08 . Optimize delete options (#46)
<?php
if (!defined('WP_UNINSTALL_PLUGIN')) {
exit();
}
$cos_options = get_option('cos_options', true);
$upload_url_path = get_option('upload_url_path');
$cos_upload_url_path = esc_attr($cos_options['upload_url_path']);
if ($upload_url_path == $cos_upload_url_path) {
update_option('upload_url_path', '');
}
$cos_delete_options = esc_attr($cos_options['delete_options']);
if ($cos_delete_options == 'true') {
delete_option('cos_options');
}
PHP
1
https://gitee.com/sy-records/sync-qcloud-cos.git
git@gitee.com:sy-records/sync-qcloud-cos.git
sy-records
sync-qcloud-cos
Sync QCloud COS
master

搜索帮助