uninstall.php 459 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
  3. exit();
  4. }
  5. function wpcf7_delete_plugin() {
  6. global $wpdb;
  7. delete_option( 'wpcf7' );
  8. $posts = get_posts(
  9. array(
  10. 'numberposts' => -1,
  11. 'post_type' => 'wpcf7_contact_form',
  12. 'post_status' => 'any',
  13. )
  14. );
  15. foreach ( $posts as $post ) {
  16. wp_delete_post( $post->ID, true );
  17. }
  18. $wpdb->query( sprintf( "DROP TABLE IF EXISTS %s",
  19. $wpdb->prefix . 'contact_form_7' ) );
  20. }
  21. wpcf7_delete_plugin();