I finally got some code made for to output this years total published posts.
get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish' AND `post_date` > '" . date("Y") . "-01-01 00:00:00'"); if (0 < $numposts) $numposts = number_format($numposts); ?>
I'm looking at the WP time paramters to try and make it also do day then week then month.
http://codex.wordpress.org/Function_Reference/query_posts#Time_Parameters
Can anyone advise me on what to do? Thanks