show count author post today

Basic logic behind what you want:

  1. Find out the actual date e.g. $date_now
  2. 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).
  3. count the rows that were returned and echo the output.