Wp Delete Attachment Unlink

[Solved] Wp Delete Attachment Unlink | Php - Code Explorer | yomemimo.com
Question : wp_delete_attachment unlink

Answered by : enthusiastic-eagle-jed7va6ut14k

foreach ( $attachments as $attachment ) { if ( false === wp_delete_attachment( $attachment->ID, true ) ) { $file = get_attached_file( $attachment->ID ); $file = str_replace( "uploads", "upload-assets", $file); wp_delete_file( $file ); } }

Source : https://stackoverflow.com/questions/38117115/make-wordpress-wp-delete-attachment-delete-files-from-a-pre-defined-custom-folde | Last Update : Thu, 21 Jan 21

Answers related to wp delete attachment unlink

Code Explorer Popular Question For Php