<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<section>
<div class="post" id="post-<?php the_ID(); ?>">
<header>
<h1 class="post-title">
<?php the_title(); ?>
</h1>
</header>
<?php
$gametitle = get_post_meta($post->ID, 'title', true);
?>
<section>
<ul>
<li><?php echo $gametitle; ?></li>
</ul>
</section>
<section>
<?php the_content(); ?>
</section>
</div>
</section>
<?php endwhile; endif; ?>
get_post_meta isn't showing anything, but if I use the_meta it shows all the custom fields...I don't get why :(