Reposition date and title in post
-
I would like to reposition the date and title of my posts. I’m familiar with CSS, but not PHP, which makes this problem more complicated.
To see an image of what I would like to accomplish, please click here.
The PHP code in question is:
<div class="contenttitle"> <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1> <p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p> </div> <?php the_content(__('Read more'));?><div style="clear:both;"></div>
The complication is that the PHP code for date and title comes before the content, but I’d like it to come within the content.
Is it possible to achieve the layout I would like? Your assistance is appreciated – Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Reposition date and title in post’ is closed to new replies.