Similar to the way you can select which version of single.php appears, depending on the category, is there anyway to select a different author.php, depending on the author ID?
Was thinking about using something similar to this, but adapting for author and author id...
<?php
$post = $wp_query->post;
if ( in_category('X') ) {
include(TEMPLATEPATH . '/single-b.php');
} else {
include(TEMPLATEPATH . '/single-a.php');
}
?>
any thoughts of how I could adapt this?
cheers
adam