• med103

    (@med103)


    I’ve got a site at http://www.fluidindustries.com. I’m trying to make the index pages have just the most recent post and then just titles under it. I’m sure there’s a tutorial or simple fix, I’m just unable to find it. A point in the right direction would be great.
    Thanks You,

Viewing 1 replies (of 1 total)
  • Dgold

    (@dgold)

    i use something like this inside the loop

    <?php $number_of_posts++; if ($number_of_posts > 1) { echo the_content_rss('', '', '', 11); }
    else { echo the_content('More &raquo;'); }
    ?>

    (code came from Kafkaesqui, IIRC)

    you would probably change the_content_rss to the title or nothing instead depending

Viewing 1 replies (of 1 total)
  • The topic ‘One Post and then just titles’ is closed to new replies.