文件操作 - uninstall.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/ionos-loop/uninstall.php
编辑文件内容
<?php /** * Plugin uninstaller logic. * * @package ionos-loop */ namespace Ionos\Loop; // If uninstall.php is not called by WordPress, exit here. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit; } /** * Deletes the plugin options and all stored data. */ function delete_plugin_options() { $option_keys = get_option( 'ionos_loop', [] ); if ( is_array( $option_keys ) ) { foreach ( $option_keys as $option_key ) { delete_option( 'ionos_loop_' . $option_key ); } } delete_option( 'ionos_loop' ); delete_option( 'ionos_loop_consent' ); } delete_plugin_options();
修改文件时间
将文件时间修改为当前时间的前一年
删除文件