aliyun-oss-wordpress/uninstall.php

16 lines
515 B
PHP
Raw Permalink Normal View History

2020-03-31 01:15:49 +00:00
<?php
//防止有人恶意访问此文件,所以在没有 WP_UNINSTALL_PLUGIN 常量的情况下结束程序
if( !defined( 'WP_UNINSTALL_PLUGIN' ) ) exit();
$obs_options = get_option('oss_options', true);
$upload_url_path = get_option('upload_url_path');
$obs_upload_url_path = esc_attr($obs_options['upload_url_path']);
//如果现在使用的是OSS的URL则恢复原状
if( $upload_url_path == $obs_upload_url_path ) {
2020-08-14 00:36:30 +00:00
update_option('upload_url_path', '');
2020-03-31 01:15:49 +00:00
}
//移除配置
delete_option('oss_options');