• Heya,
    If you visit https://development.theportlandco.com you’ll notice, in the middle right of the page, that a listing saying “Private: Home” with the date appears. This should list my most recent posts, but I’m not sure what I’m doing wrong, can someone help? Below is my code, thanks!

    <?php while (have_posts()) : the_post(); ?>
    	<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
    	<p class="row-1-col-2-date"><?php the_time('l, F jS, Y') ?></p>
    <?php endwhile; ?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • you need to call <?php the_content(); ?> after the datestamp

    Thread Starter Spencer Hill

    (@ws5f3dj7)

    Like this:

    <?php while (have_posts()) : the_post(); ?>
    	<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
    	<p class="row-1-col-2-date"><?php the_time('l, F jS, Y') ?><?php the_content(); ?></p>
    <?php endwhile; ?>
    Thread Starter Spencer Hill

    (@ws5f3dj7)

    Okay so I had to replace what I had with the following code to resolve my issue:

    <?php
    	query_posts('showposts=5');
    	while (have_posts()) : the_post();
    ?>
    	<a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
    	<p class="row-1-col-2-date"><?php the_time('l, F jS, Y') ?></p>
    <?php endwhile;?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Difficulty listing recent posts, need help…’ is closed to new replies.