1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 <ul>
<?php $args = array(
'post_type' => 'attachment',
'post_parent' => $post->ID,
'post_mime_type' => 'image',
'post_status' => NULL,
'numberposts' => -1 );
$attachments = get_posts($args);
foreach ($attachments as $attachment) {
$title = $attachment->post_title;
$caption = $attachment->post_excerpt;
$description = $attachment->post_content;
?>
<li>
<a rel="group" title="<?php echo $title ?><?php if ($caption){ ?> :: <a href='/<?php echo $caption ?>'><?php echo $description ?></a><?php } ?>" href="<?php echo wp_get_attachment_url($attachment->ID ); ?>">
<?php echo wp_get_attachment_image($attachment->ID, 'thumbnail', false, false); ?>
</a>
</li>
<?php } ?>
</ul>
wp_nav_menu()
December 8, 2012/ Updated: December 8, 2012