Forums

[resolved] Last 5 post titles from category 1 (3 posts)

  1. zerovic
    Member
    Posted 1 year ago #

    hey guys,
    could you please help me out with this.
    what i want is to pull out the last 5 post titles from category1 with permalinks. i'm sure it's pretty easy, however i can't get it work :(
    any help appreciated!

    kind regards,
    zerovic

  2. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    <?php
    $args= array(
    	'cat' => 1,
    	'posts_per_page' => 5
    );
    $catposts = get_posts($args);
    foreach($catposts as $post) :
    setup_postdata($post);
    ?>
    <h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2>
    <?php endforeach;
    ?>

    http://codex.wordpress.org/Function_Reference/get_posts

  3. zerovic
    Member
    Posted 1 year ago #

    thank you ;)

Topic Closed

This topic has been closed to new replies.

About this Topic