How to get single post by one author?

$args = array( 'author' => 1, 'numberposts' => 1 ); The author parameter isn’t documented on the get_posts() codex page, but it does work.