Viewing 1 replies (of 1 total)
  • Thread Starter Andreas

    (@andioh)

    I found this code.
    Can you say me how to add the url for the attachments? So i can open the pictures in Lightbox, thanks!

    <?php
    $args = array(
        'post_type' => 'attachment',
        'numberposts' => null,
        'post_status' => null,
        'post_parent' => $post->ID
    );
    $attachments = get_posts($args);
    if ($attachments) {
        foreach ($attachments as $attachment) {
            echo wp_get_attachment_image($attachment->ID, 'medium');
        }
    }
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Custom post template’ is closed to new replies.