ve
ı chrome sorunsuz algılamasına rağmen explorer algılamıyor. Çözümsel fikri olan varsa sevinirim. Saygılar...
$images =& get_children( array (
'post_parent' => $post->ID,
'post_type' => 'attachment',
'post_mime_type' => 'image'
));
if ( empty($images) ) {
// no attachments here
} else {
foreach ( $images as $attachment_id => $attachment ) {
echo wp_get_attachment_link( $attachment_id, 'thumbnail' );
}
}
?>