HOW TO DELETE ALL FETAURED IMAGE FROM WORDPRESS IN 1 CLICK

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

No comments:

Post a Comment