How to separate attachments from content
-
Basically all I need is to be able to show an image, then the title then the content. In this order.
At the moment, I have this:
<?php while (have_posts()):the_post(); ?> <h1><?php the_title(); ?></h1> <?php the_content(''); ?> <?php endwhile; ?>
But then, it shows the title, image then content. Can someone help please? Thanks
- The topic ‘How to separate attachments from content’ is closed to new replies.