Here is how to delete all your wordpress featured imaage at once without manually deleting from each post which is a pain
follow simple steps
1- login to dashboard and navigate to theme editor wher you access functions.php
2- Or if you cant get a plugin to edit functions.php– Shortcode Exec PHP
Now add the below code to it
global $wpdb;
$wpdb->query( "
DELETE FROM $wpdb->postmeta
WHERE meta_key = '_thumbnail_id'
" );
Thats it. Done !!!
As soon job done delelte that code
As soon job done delelte that code
No comments:
Post a Comment