Xóa bài viết sẽ xóa luôn hình ảnh đính kèm
// Xóa bài viết sẽ xóa luôn hình ảnh đính kèm
add_action( 'before_delete_post', 'delete_all_attached_media' );
function delete_all_attached_media( $post_id ) {
if( get_post_type($post_id) == "post" ) {
$attachments = get_attached_media( '', $post_id );
foreach ($attachments as $attachment) {
wp_delete_attachment( $attachment->ID, 'true' );
}
}
}
Previous[ERROR] WORDPRESS – HOW TO SET “DIRECT” FILESYSTEM METHODNextHow to Setup Facebook Login (ok)
Last updated
Was this helpful?