function resimcek() {
$files = get_children('post_parent='.get_the_ID().'&post_type=attachment');
if($files) :
$keys = array_reverse(array_keys($files));
$j=0;
$num = $keys[$j];
$thumb_url_array = wp_get_attachment_image_src($num, 'thumbnail', true);
$thumb_url = $thumb_url_array[0];
echo "";
endif;
}
?>