$post_thumbnail_id = get_post_thumbnail_id( (int)27923 );
//хочу получить аррей, а возвращает только один id, их там больше в галереи товара
//foreach($post_thumbnail_id as $id){
$res = wp_delete_attachment( $post_thumbnail_id, true );
// удаляет только одну, а нужно для всех
//}
( (int)27923 )
function getAttachmentsPost($post_id = 0) {
$args = array(
'post_parent' => $post_id,
'post_type' => 'attachment',
'post_mime_type' => 'image',
'posts_per_page' => -1,
);
if ( $attachments = get_children( $args ) ) {
return $attachments;
}
return [];
}