I am using the Recent Posts Function from the Snippets section of CSS-Tricks, and it is working great, but how do I add the date into the mix?
The function:
function recent_posts($no_posts = 10, $excerpts = true) {
global $wpdb;
$request = "SELECT ID, post_title, post_excerpt FROM $wpdb->posts WHERE post_status = 'publish' AND post_type='post' ORDER BY post_date DESC LIMIT $no_posts";
The function:
Thanks