I have tried dbDelta and $wpdb->query, they does not work. Does anyone has any ideas?

3 Answers
3

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');

Leave a Reply

Your email address will not be published. Required fields are marked *