herkese faydası olsun , sorun aşağıdaki kod ile çözülüyor
----------------------------
add_action( 'trashed_post', 'mtp_delete_attached_thumbnail_for_trashed_product', 20, 1 );
function mtp_delete_attached_thumbnail_for_trashed_product( $post_id ) {
// gets ID of post being trashed
$post_type = get_post_type( $post_id );
// does not run on other post types
if ( $post_type != 'post' ) {
return true;
}
// get ID of featured image
$post_thumbnail_id = get_post_thumbnail_id( $post_id );
// delete featured image
wp_delete_attachment( $post_thumbnail_id, true );
}
-----------------------------
yazılar çöp kutusuna taşındığında yukarıdaki kod ile yazıya eklenmiş resim ve küçük resim beraberinde sunucudan siliniyor.
sorun bu şekilde çözülmüş oldu