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
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
<?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;
?>
thank you ;)
This topic has been closed to new replies.