show count author post today
Basic logic behind what you want: Find out the actual date e.g. $date_now Get posts by author http://codex.wordpress.org/Function_Reference/get_posts_by_author_sql that have the same publish date as $date_now (you need to do a sql query for that). count the rows that were returned and echo the output.