I have added several custom fields to a post. I also checked that I could execute php code in the post for that user.
If I use the <?php the_meta(); ?> it shows all the metas but if I try anything with a single field for example lets say I have one meta called: Location and the other Address and I try to display them within the post they do not show at all.
Is there something in the template loop that blocks this from working?
<?php echo get_post_meta($post->ID, 'Location', true); ?> should be working but there is no output for that query when Location is clearly there is I use <?php the_meta(); ?>
Any ideas?














