wp_delete_attachment()
Deletes a WordPress attachment (media library file, attached file). The file is physically deleted.
This function does the same thing as if you went to the Media Library and deleted an image (attachment).
This function does not check if the deleted attachments are used on the site (somewhere in the content). So, if you delete an attachment and it is used in the content of a post, the link to this image will become broken in the content of the post.
Deletes:
- The post from the wp_posts table.
- Related metadata.
- Taxonomy relationships (categories, tags, custom taxonomies) (if any).
- Related comments (if any).
- Files related to the attachment (original, thumbnails).
Hooks from the function
Returns
WP_Post|false|null. false on failed deletion. Data of the attachment upon deletion.
The check should be performed using the comparison operator ===, not ==, because the function may return 0 or an empty array in case of successful deletion.
Usage
wp_delete_attachment( $attachment_id, $force_delete );
- $attachment_id(number) (required)
- ID of the attachment you want to delete.
- $force_delete(boolean)
true - permanent deletion bypassing the trash, if the trash is enabled.
When
$force_delete = false- attachments are moved to the trash, although by default there is no button in the media library to access the trash - this can be confusing. Also, attachment files (physical files inwp-content/uploads) are kept as is.When
$force_delete = true- attachment files (physical files inwp-content/uploads) will be deleted.Default: false
Examples
#1 Deleting an attachment
We will irrevocably delete the attachment with ID 54:
wp_delete_attachment( 54, true );
#2 Delete all post attachments (attached files), along with the deletion of the post
On some blogs it is convenient to make it so that when you delete a post, all the media files attached to it would be deleted along with it. You can do it this way:
// Deletes all post attachments (attached media files) along with the post(s)
add_action( 'before_delete_post', 'wpkama_delete_attaches_with_post' );
function wpkama_delete_attaches_with_post( $post_id ) {
$post = get_post( $post_id );
$post_types = [ 'article', 'question' ]; // delete attachments only for these post types
if( ! $post || ! in_array( $post->post_type, $post_types ) ){
return;
}
$attaches = get_children( [
'post_type' => 'attachment',
'post_parent' => $post_id,
] );
if( ! $attaches ){
return;
}
foreach( $attaches as $attach ){
wp_delete_attachment( $attach->ID, true );
}
}
The hook before_delete_post, because when the post is deleted, all attachments take the status unattached, i.e. the post_parent value is deleted, and the post attachments are selected by it. So the hooks delete_post and after_delete_post will not work.
#3 Deleting a media file with verification
Let's delete the attachment and check if the specified media file was really deleted:
if( false === wp_delete_attachment( 54, true ) ){
echo "Failed to delete media file";
} else {
echo "The media file has been deleted";
}
Notes
- Global. wpdb.
$wpdbWordPress database abstraction object.
Changelog
| Since 2.0.0 | Introduced. |