Con quest codice estraggo le "post_date" e le metto in un array almeno penso stia bene..
Codice PHP:
$host "";
$dbuser "";
$dbpassword "";
$dbname "";

$con mysql_connect($host,$dbuser,$dbpassword);
if (!
$con)  {
  die(
'Could not connect: ' mysql_error());
  }
mysql_select_db($dbname$con);

$inserted=array();
$q_inserted=mysql_query("select post_date from wp_posts");
while(
$r_inserted mysql_fetch_array($q_inserted)) {
$inserted[]=$r_inserted['post_date'];

Il problema è:
Come faccio a contare le date che ci sono in "post_date" che sono di oggi?