Получилось решить самому, но почему-то 'posts_per_page' => -1 выдает ошибку..
global $wp_query;
$args = array_merge( $wp_query->query_vars, array(
'post_type' => 'bio',
'posts_per_page' => 1000,
'order' => 'ASC',
'orderby' => 'title'
) );
query_posts( $args );