The problem is also that I currently display the images in one <td> and the copy in another. That's the only way I can think of that displays the text next to the image.
So I pretty much use:
<td>
<?php images('2'); ?>
</td>
<td>
<?php the_excerpt(); ?>
</td>
For that reason I can't use <?php the_content();?> since that would display the whole post, with images a second time.
If there's a way of displaying the images with the text right next to it, as currenly designed, please let me know!
If anyone has got any other suggestion on how to get all excerpt in the single post and not in the index page, I'd really appreciate your help!
Thanks,
H