Hi there,
I'm designing my first wordpress theme and would like to have my post title <h2> to be positioned under my image.
For the record, I'll have an image for each post, and the way I've designed the blog, It needs to be positioned below the image.
I guess I can try that using CSS, but wonder if there was a easier way around like in drupal.
my code is:
...
<?php the_content(''); ?>
<?php the_title(); ?>
...
In the example above, the title is below the image, but ALSO below the paragraph that accompany the image. I want:
- image
- title
- paragraph
Is it possible?
Many thanks