How to delete all excerpt data in WordPress
Sometimes you may need to delete excerpt data from WordPress all at once. In that case, what should you do? First of all, access it using a program such as PHPMyAdmin or HeidiSQL. Here's how to delete all excerpt data in WordPress. Access the wp_posts table using PHPMyAdmin, HeidiSQL. Select the post_excerpt column from the wp_posts table. Clear the entire post_excerpt value. You can do this by running a SQL query. For example, you can empty all post_excerpt values in the wp_posts table by running the following query: [code]UPDATE wp_posts SET post_excerpt = '';[/code] CAUTION: A backup is recommended before modifying the database.