• cam_oai

    (@cam_oai)


    I found this code for query posts from many cats, but some how it’s only display 5posts. I have changed to 10 but still only 5posts..

    Can any1 tell me how to query to get posts from cat 2,3,4,5,6 ect

    NOT WORKING CODE HERE:

    <?php
    $posts = query_posts('cat=3,4,5,6,7,8&numberposts=6');
    foreach ($posts as $post) :
    ?>
    <div class="Box"><a href="<?php the_permalink(); ?>" title="<?php the_title() ?>"><?php the_title() ?></a><small><?php the_time('F jS, Y') ?></small></div>
    <?php
    endforeach;
    ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    Try this instead:
    $posts = query_posts('cat=3,4,5,6,7,8&showposts=6');

    The keyword is “showposts”. Not “numberposts”.

    Thread Starter cam_oai

    (@cam_oai)

    thank you :), i never figure it out that part hehe.

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘What’s wrong with this query?’ is closed to new replies.