sakarya adlı üyeden alıntı: mesajı görüntüle
Merhaba..

Öne çıkarılmış resimleri nasıl ayırır bilmiyorum ama aşağıdaki kod yazılara ekli tüm resimleri silmeli..
add_filter('pre_get_posts','delete_images_function');
function delete_images_function() {
	query_posts('post_type=post&posts_per_page=-1');
	while(have_posts) : the_post();
		$attachments= get_attached_media( 'image', get_the_ID() );
		foreach($attachments as $att_id => $attachment) {
			wp_delete_attachment( $attachment->ID );
		}
	endwhile; wp_reset_query();
}
Hocam bu kodu functionsa ekliyoruz sanırım dimi?

Ben komple datadan silmeyi istiyorum, bu kod o an görüntülendiğinde çalışıp o an konudan siliyor dimi? Komple datadan siliyormu?
.
.
.
.