How to Display Recent Posts in WordPress

Retrieve the most recent WordPress posts:

$recent_posts = wp_get_recent_posts( "post_type=post&numberposts=10&order=desc&orderby=id&post_status=publish", ARRAY_A );
 
foreach( $recent_posts as $recent )
{
    echo '<li>'.get_the_date('Y/m/d', $recent['ID']).' - <a href="'.get_permalink( $recent['ID'] ).'" title="'.get_the_title( $recent['ID'] ).'">'.get_the_title( $recent['ID'] ).'</a></li>';
}

References:

Function Reference/wp_get_recent_posts

More Related Posts