pagination in author.php template returns 404 error

i found a solution to my problem!

function custom_author_archive( &$query ) {
    if ($query->is_author)
        $query->set( 'post_type', 'idea' );
}
add_action( 'pre_get_posts', 'custom_author_archive' );

Leave a Comment