Best way to bulk delete unused images on WordPress

webninja07

Registered Member
Joined
Aug 26, 2020
Messages
67
Reaction score
26
Hello gems,
Can anyone please help me about how to bulk delete the unused images on WordPress. I have 12k plus total images.
 
If you dont find a plugin to do this, you could do it with a plugin yourself,

1724476844555.png


Thats the SQL code to search your db for all media attachments, see if there is a reference to their guide in the posts or pages, and also checks post meta data.

Then, you just need the PHP code and the plugin code wrapper to work with WordPress, and you could run it yourself. Check the guide I made for creating quick and dirty WordPress plugins. It takes about 15 minutes if you know what you're roughly doing.

Chat gpt is your friend! :)
 
If you dont find a plugin to do this, you could do it with a plugin yourself,

View attachment 370448


Thats the SQL code to search your db for all media attachments, see if there is a reference to their guide in the posts or pages, and also checks post meta data.

Then, you just need the PHP code and the plugin code wrapper to work with WordPress, and you could run it yourself. Check the guide I made for creating quick and dirty WordPress plugins. It takes about 15 minutes if you know what you're roughly doing.

Chat gpt is your friend! :)
Thank you and highly appreciate
 
Back
Top