Quick and dirty here we go.
I am using custom meta-box to show concert data, (i.e. location, venue).
I have my function.php
[Code moderated as per the Forum Rules. Please use the pastebin]
Now I want to incorporate the data from these custom fields onto the post itself, once I have filled them in on the post edit page. Please tell me if this is the proper way to display custom field information on a page.
<?php if( $venue_info[0] ) : ?>
<?php echo $venue_info[0] ?>
<?php endif; ?>
And of course I put that code into the loop.
Keep in mind that this works, but what works isn't always what's proper.
Thank you!