Last active
February 8, 2024 07:29
-
-
Save sabrina-zeidan/efafd952f2453edf4a6471d09cdfa747 to your computer and use it in GitHub Desktop.
Clean Media Library from broken images. Delete attachments which files no longer available and return 404 error [Wordpress]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function delete_404_attachments(){ | |
$attachments = get_posts( array( | |
'post_type' => 'attachment', | |
'numberposts' => -1, | |
'fields' => 'ids' | |
)); | |
if ($attachments) { | |
foreach ($attachments as $attachmentID){ | |
$file_url = wp_get_attachment_url( $attachmentID); | |
$file_headers = @get_headers($file_url); | |
if($file_headers[0] == 'HTTP/1.1 404 Not Found') { | |
$deleted = wp_delete_attachment($attachmentID, true); | |
} | |
} | |
} | |
} |
good question
You can action init.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not used anything like this before - where would I add this? to the funcitons.php file? then how would I run it?