heelo! Do you know how to display total number of posts published today ?
<?php
$post_date = mysql2date(“Ymd”, $post->post_date_gmt);
$numpost = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = ‘publish’ And post_date==post_date_gmt”);
echo $numpost;
?>
do not work