Viewing 3 replies - 1 through 3 (of 3 total)
  • You have something like this:

    <a href="<?php the_permalink() ?>" rel="bookmark" title="Enlace Permanente a <?php the_title(); ?>">
              <?php the_title(); ?>
              </a>
              <?php the_time('d/m/Y') ?>

    Is easy, just do this:

    <?php the_time('d/m/Y') ?>
    
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    <?php the_title(); ?>

    Cheerz!,
    Hope this can Help!,

    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

    bumP ^

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to make the Date go first before Entry title?’ is closed to new replies.