at path:
ROOT
/
wp-content
/
plugins
/
contact-form-7
/
uninstall.php
run:
R
W
Run
admin
DIR
2026-02-08 11:50:05
R
W
Run
assets
DIR
2026-02-08 11:50:05
R
W
Run
includes
DIR
2026-02-08 11:50:06
R
W
Run
languages
DIR
2026-02-08 11:50:06
R
W
Run
modules
DIR
2026-02-08 11:50:06
R
W
Run
license.txt
18.73 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
load.php
5.82 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
readme.txt
4.59 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
uninstall.php
525 By
2026-02-08 11:50:06
R
W
Run
Delete
Rename
wp-contact-form-7.php
1.86 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
error_log
up
📄
uninstall.php
Save
<?php if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit(); } function wpcf7_delete_plugin() { global $wpdb; delete_option( 'wpcf7' ); $posts = get_posts( array( 'numberposts' => -1, 'post_type' => 'wpcf7_contact_form', 'post_status' => 'any', ) ); foreach ( $posts as $post ) { wp_delete_post( $post->ID, true ); } $wpdb->query( $wpdb->prepare( "DROP TABLE IF EXISTS %i", $wpdb->prefix . 'contact_form_7' ) ); return true; } if ( ! defined( 'WPCF7_VERSION' ) ) { wpcf7_delete_plugin(); }