Files
wp-agentic-writer/uninstall.php
2026-01-28 00:26:00 +07:00

22 lines
401 B
PHP

<?php
/**
* Uninstall plugin
*
* @package WP_Agentic_Writer
*/
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
// Delete options.
delete_option( 'wp_agentic_writer_settings' );
// Delete post meta.
delete_post_meta_by_key( '_wpaw_plan' );
// Delete cost tracking table.
global $wpdb;
$table_name = $wpdb->prefix . 'wpaw_cost_tracking';
$wpdb->query( "DROP TABLE IF EXISTS $table_name" );