<?php
$args = array( 'posts_type' => 'game',
'publish' => true
);
$game_cards = get_posts( $args );
foreach ($game_cards as $post) {
?>
<?php the_title(); ?>
<?php the_meta(); ?>
<?php
}
wp_reset_postdata();
?>