what if i wanted them 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>" 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
…