Чтобы получить все изображения вложений, вам нужно выполнить запрос.
$args = array(
'post_type' => 'attachment',
'post_parent' => $post->ID,
'post_status' => 'inherit',
'numberposts' => -1
);
$images = get_posts($args);
Это загрузит любое изображение, прикрепленное к сообщению, в переменную $ images, а затем сделает цикл foreach для них, чтобы получитьimages:
<?php foreach ($images as $i) : ?>
<a href="<?php wp_get_attachment_image_src($i->ID, 'full'); ?>" rel="customrel" class="aclasstodeine">
<img src="<?php wp_get_attachment_image_src($i->ID, 'thumbnail'); ?>" alt="" class="aclasstodefine" />
</a>
<?php endforeach; ?>
Вы можете прочитать о wp_get_attachment_image_src здесь: http://codex.wordpress.org/Function_Reference/wp_get_attachment_image_src