Ashley Cameron Design

Ashley Cameron Design

Shop the Creative Design Market

Good morning

Gallery with linked attachment thumbnails and titles with links in fancybox

SnippetsWordPress

About a 1 minute read

"The art of living… is neither careless drifting on the one hand nor fearful clinging to the past on the other. It consists in being sensitive to each moment, in regarding it as utterly new and unique, in having the mind open and wholly receptive."

Alan Watts


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>