• thunderdust

    (@thunderdust)


    Hi guys,

    At the moment i use this code to show the latest entries i’ve made, but what i want is to show the latest entries per category.

    my code:

    <?php
    $myposts = get_posts('numberposts=10&offset=1');
    foreach($myposts as $post) :
    ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title();
    ?></a></li>
    <?php endforeach; ?>

    What do i need to change so it will show the posts per category.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Show Latest Entries By Category’ is closed to new replies.