Display recent posts for category
-
I want to display recent posts for the current category. This is what I have but it doesn’t’ work:
<?php
$args = array( ‘numberposts’ => ‘5’, ‘category’ => ‘8’ );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $post ){
echo ‘- ‘ . $post[“post_title”].’
‘;
}
?>What I get when I do that is it only displays 1 post and it isn’t from category 8 but appears to just be the single most recent post regardless of category.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Display recent posts for category’ is closed to new replies.