Hi, each image when optimized will get some additional info in the wp_postmeta table, where the post_id refers to the image. To get a list of all records that contain optimization information you could probably enter a SQL querie like this:
SELECT * FROM wp_postmeta WHERE meta_key = "tiny_compress_images";
Thread Starter
wpturk
(@wpturk)
Is it safe to:
DELETE FROM wp_postmeta WHERE meta_key ="tiny_compress_images";
Are there any other entries from your plugin in postmeta table?
Thread Starter
wpturk
(@wpturk)
Any news on this?
I want to keep on using your plugin but is it ok to delete these entries below? (I don’t need the compress info)
DELETE FROM wp_postmeta WHERE meta_key =”tiny_compress_images”;