• I found a way to display the total number of posts made but I need to be able to display the total amount of posts for the current.

    Day
    Week
    Month

    Anyone got some code please?

    Thanks

Viewing 1 replies (of 1 total)
  • Thread Starter markey101101

    (@markey101101)

    I figured out how to do it for the year

    <?php echo $numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish' ANDpost_date` > ‘” . date(“Y”) . “-01-01 00:00:00′”);
    if (0 < $numposts) $numposts = number_format($numposts); ?>`

    Can anyone help me make it into day, week and month please?

    Thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘Display Total Number of Posts For Current Month, Week and Day?’ is closed to new replies.