Hi Kafkaesqui,
I tried that and it still displays the same order. Here is my exact code:
<?php
$how_many=15; //How many posts do you want to show
require_once(“news/wp-config.php”); // Change this for your path to wp-config.php file ?>
<id=”whats-new”>
<?
$news=$wpdb->get_results(“SELECT ID
,post_title
FROM $wpdb->posts
WHERE post_type
=\”post\” AND post_status
= \”publish\” ORDER BY ‘post_date’ DESC LIMIT “.$how_many);
foreach($news as $np){
printf (“%s<br><br>”, $np->ID,$np->post_title);
}?>
Any advice?
Thank you.