date title on the same line
-
i’m customising the classic theme.. implementing it in to a template page i made up that’s the same as the rest of my website.
i’m trying to get the date and post title on the same line.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_date('','<h2>','</h2>'); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
i’d imagine i could just move the date onto the same line as the storytitle but it doesn’t work. i tried a few different things and searched the forum – but found no resolution. probably real simple though, thanks in advance ??
<div class="post" id="post-<?php the_ID(); ?>"> <h3 class="storytitle"><?php the_date('','<h2>','</h2>'); ?><a href="<?php
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘date title on the same line’ is closed to new replies.