Ashley Cameron Design

Ashley Cameron Design

Shop the Creative Design Market

Good afternoon

Gallery with linked attachment thumbnails and titles with links in fancybox

SnippetsWordPress

About a 1 minute read

"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."

Albert Einstein


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>