Remove Featured Image From All Posts and Pages
You can use a simple SQL statement to remove a featured image from all posts, pages and custom post types in WordPress. Simply run this statement against the database:
DELETE FROM wp_postmeta WHERE meta_key = '_thumbnail_id';
Please create a backup before running this statement – if anythi...