I have tried dbDelta and $wpdb->query, they does not work. Does anyone has any ideas?
3 Answers
As try today, truncate is WAY BETTER that DELETE, because DELETE broke the site, and trucate just empty the table, here is the working code :
global $wpdb;
$wpdb->query('TRUNCATE TABLE wp_posts');