Display 6 most recent post on homepage?

I have checked your code please compare your WP_Query args with mine. Also, have a look on the available WP_Query args.

$queryArgs = array(
                // Do not get posts from the Uncategorized category.
                'cat' => '-1',
                // Order by date.
                'orderby' => 'date',
                // Show all posts.
                'posts_per_page' => '6',
                'post_type' => 'portfolio',
                'post_status' => 'publish',
               );
        $query = new WP_Query( $queryArgs );

Hopefully! It will work for you 🙂