The fix for this turns out to be relatively easy; I’ve put it into a simple plug-in with about 3 lines of actual code. See URL below.
This solution is not necessarily plug-and-play, though, because it will hand The Loop an object containing both posts and pages, interspersed. This may not be what you want. You’ll almost certainly want to modify your authors template (author.php) to process posts and pages separately; e.g., you could have two iterations of the loop, with the first skipping pages and the second skipping posts. Hint: within the loop, $post->post_type will be either ‘post’ or ‘page’. Don’t forget to use rewind_posts() between the two loops.
Anyway, the challenge with showing pages for authors is not simply retrieving them, as I suggested in my earlier message here. By the time the author.php template runs, in 2.5 anyway, WordPress has already served a 404 header for author-page requests if no posts were found. This means it’s necessary to either disable the 404 header, or have WordPress retrieve posts and pages at once (for author requests anyway).
Other solutions around the web advocate adding a test (&& is_author()) to handle_404() in classes.php, so that author-page requests don’t send a 404 even if no posts are found. The problem with this is that requests for bogus author names will also pass — there’s no validation of authors at this point. Also, this sort of mod gets overwritten when you update WordPress. No fun.
Some digging revealed that the parse_request() function in classes.php runs external filters against the request terms, prior to querying the database. For author requests, the $this->query_vars object contains a single term, ‘author_name’. My plugin tests for this term; if the term is found, the plugin appends another value to the array, setting ‘post_type’ to ‘any’.
Setting that value here overrides a default value of ‘post’ that would otherwise be set downstream. This simple change causes WordPress to retrieve both posts and pages for author-page requests. The correct 404 behavior for nonsense author names is retained.
The plug-in is known to work for version 2.5.1 and not tested anywhere else.
https://debris.com/misc/includepagesforauthors.phps