3,
'post_status' => 'publish',
'post_type' => 'post',
'orderby' => 'comment_count',
'order' => 'desc'
);
$recent_posts = get_posts( $args );
foreach( $recent_posts as $recent_post ) : setup_postdata( $recent_post );
echo '- ' . $recent_post->post_title . '
';
endforeach; ?>
3,
'post_status' => 'publish',
'post_type' => 'post',
'orderby' => 'post_date',
'order' => 'desc'
);
$recent_posts = get_posts( $args );
foreach( $recent_posts as $recent_post ) : setup_postdata( $recent_post );
echo '- ' . $recent_post->post_title . '
';
endforeach; ?>