1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<H1><?php the_title(); ?></H1>
<div class="clear"></div>
<div class="buttons">
<?php previous_post_link_custom('%link', 'Previous Pic') ?>
<?php next_post_link_custom('%link', 'Next Pic') ?>
</div>
<div class="pic rounded-8">
<!--post title as a link-->
<div id="post-<?php the_ID(); ?>" class="thumbnail" >
<?php $feature_img = portfolio_get_post_image( $post->ID, 'Thumbnail', '', '' ); ?>
<img src="<?php echo $feature_img; ?>" alt="<?php the_title(); ?>" />
</div> |
Partager