This is currently what I have:
<?php
$loop = new WP_Query(array('post_type' => 'portfolio', 'posts_per_page' => 10));
?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php
$custom = get_post_custom($post->ID);
$screenshot_url = $custom["screenshot_url"][0];
$website_url = $custom["website_url"][0];
?>
<div id="portfolio-item">
<a href="<?php the_post_thumbnail('full'); ?>" id="single_image"><?php the_post_thumbnail('portfolio'); ?> </a>
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
I’m guessing the syntax is wrong for the link because this is what is being printed on the screen: ” id=”single_image”>
above the portfolio thumbnail