• Resolved bastiaanvinke

    (@bastiaanvinke)


    Hello,

    Question: Is it possible to show the first (let say five titles) of a certain category on the main page? I mean something like this:

    Books (category name)
    Huckelberry Finn
    Lord of the Flies
    Wuthering heights
    Henry IV
    To kil a Mockingbird

    Titles of books are links

    and so on.

    I haven’t found a solution so far. I hope someone can help me!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bastiaanvinke

    (@bastiaanvinke)

    Yes. I do it like this:

    <?php query_posts('category_name=books&showposts=5'); ?>
    
    <strong><?php single_cat_title(); ?></strong><br />
    
    <?php while (have_posts()) : the_post(); ?>
    
    <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br />
    
    <?php endwhile; ?>

    Change the category name to whatever category you want to show.

    Thread Starter bastiaanvinke

    (@bastiaanvinke)

    JoyceD, thanks very much. It works ! thanks again.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Title in categories’ is closed to new replies.