I put that in the navigation area, which comes right after the “recent-content” div, but it does the same thing. It takes me to the post. I’d like to bring up the next set of thumbnails and show them in place of the ones that are currently showing. I hope I’m making some sense.
Maybe the whole code for what I’m talking about would be helpful.
<div id="recent-content">
<ul class="recent-projects-port">
<li>
<?php
query_posts('showposts=12&cat=6'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><img src="<?php echo get_option('home'); ?>/wp-content/<?php
$values = get_post_custom_values("Thumb"); echo $values[0]; ?>" alt="" /></a>
<?php endwhile; ?>
</li>
</ul>
</div>
// the navigation here is separate from the thumbs, i don't know if that's important or not.
<div class="port-navigation">
<span class="previous-entries"><?php previous_post_link('%link', 'Previous', TRUE); ?></span> | <span class="next-entries"><?php next_post_link('%link', 'Next', TRUE); ?></span>
</div>
I feel like it somehow needs to be told what I want from the next posts (the thumbnails) and where to post them… but alas I don’t know a lot about php other than the few things I’ve picked up during the past week.
By the way,
I really appreciate your help, esmi. :]