Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anhducbkhn/0b814a4b3ad64a0fc3286ed0a7b652a8 to your computer and use it in GitHub Desktop.
Save anhducbkhn/0b814a4b3ad64a0fc3286ed0a7b652a8 to your computer and use it in GitHub Desktop.
Clean Plugins WP
Remove Data Go Pricing (https://www.go-pricing.com/) plugin
global $wpdb;
$rows = $wpdb->get_results( "SELECT * FROM wp_posts where `post_type` = 'go_pricing_tables'");
foreach ( $rows as $row )
{
wp_delete_post( $row->ID, true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment